[Genlist] Change help text
[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_LIST_MAIN_TEXT_FOCUS_COLOR;
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_LIST_MAIN_TEXT_UNREAD_COLOR;
191                text {
192                   font: "SLP:style=Roman";
193                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
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_LIST_MAIN_TEXT_FOCUS_COLOR;
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_BG_IMAGE
273          GENLIST_PART_BASE_REORDER( GENLIST_HEIGHT_1LINE )
274          GENLIST_PART_BOTTOM_LINE
275
276          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
277          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
278
279          part { name: "elm.text";
280             clip_to: "disclip";
281             type: TEXT;
282             mouse_events: 0;
283             scale: 1;
284             GENLIST_DESCRIPTION_LR("elm.padding.left", "elm.padding.right", \
285                align: 0.0 0.5;
286                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
287                text {
288                   font: "SLP:style=Roman";
289                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
290                   min: 0 1;
291                   align: 0 0.5;
292                   text_class: "list_item";
293                }
294             )
295             description { state: "selected" 0.0;
296                inherit: "default" 0.0;
297                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
298             }
299             //GENLIST_DESCRIPTION_INVISIBLE_SELECTED
300             GENLIST_DESCRIPTION_FLIP_ENABLED
301          }
302          GENLIST_PART_FLIP
303          GENLIST_PART_DISCLIP
304       }
305       programs {
306          GENLIST_PROGRAM_DISCLIP( ; )
307          GENLIST_PROGRAM_SELECT( target: "elm.text"; )
308          GENLIST_PROGRAM_REORDER
309          GENLIST_PROGRAM_FLIP( target: "elm.text"; )
310       }
311    }
312 // 2.2.1.1 (textblock)
313    group { name: "elm/genlist/item_compress/1text.tb/default";
314       inherit: "elm/genlist/item/1text/default";
315       parts {
316          part { name: "elm.text";
317             clip_to: "disclip";
318             type: TEXTBLOCK;
319             mouse_events: 0;
320             scale: 1;
321             GENLIST_DESCRIPTION_LR("elm.padding.left", "elm.padding.right",
322                align: 0.0 0.5;
323                text {
324                   min: 0 1;
325                   style: "genlist_style_list_main_text_unread";
326                }
327             )
328             description { state: "selected" 0.0;
329                inherit: "default" 0.0;
330                // FIXME: Why color textblock of is not changed by text.style?
331                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
332                text.style: "genlist_style_list_main_text_focus";
333             }
334             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
335             GENLIST_DESCRIPTION_FLIP_ENABLED
336          }
337       }
338    }
339 // scaled automatically by icon size
340 // 2.2.1.5
341 // 2.2.1.6
342 // 2.2.1.7
343    group { name: "elm/genlist/item/1text.1icon/default";
344       alias: "elm/genlist/item_odd/1text.1icon/default";
345       alias: "elm/genlist/item_compress/1text.1icon/default";
346       alias: "elm/genlist/item_compress_odd/1text.1icon/default";
347       alias: "elm/genlist/item/1text.1icon.4/default";
348       alias: "elm/genlist/item_odd/1text.1icon.4/default";
349       alias: "elm/genlist/item_compress/1text.1icon.4/default";
350       alias: "elm/genlist/item_compress_odd/1text.1icon.4/default";
351
352       inherit: "elm/genlist/item/1text/default";
353
354       data.item: "contents" "elm.icon";
355       parts {
356          part { name: "elm.text";
357             description { state: "default" 0.0;
358                rel2 {
359                   relative: 0.0 1.0;
360                   to_x: "elm.icon";
361                   offset: -GENLIST_PADDING_SIZE_DEFAULT 0;
362                }
363             }
364             description { state: "selected" 0.0;
365                rel2 {
366                   relative: 0.0 1.0;
367                   to_x: "elm.icon";
368                   offset: -GENLIST_PADDING_SIZE_DEFAULT 0;
369                }
370             }
371          }
372          part { name: "elm.icon";
373             clip_to: "disclip";
374             type: SWALLOW;
375             scale: 1;
376             description { state: "default" 0.0;
377                fixed: 1 1;
378                align: 1.0 0.5;
379                rel1 {
380                   relative: 0.0 0.0;
381                   to_x: "elm.padding.right";
382                }
383                rel2 {
384                   relative: 0.0 1.0;
385                   to_x: "elm.padding.right";
386                }
387             }
388             GENLIST_DESCRIPTION_FLIP_ENABLED
389          }
390       }
391       programs {
392          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
393       }
394    }
395 // 2.2.1.28
396    group { name: "elm/genlist/item/1text.1icon.divider/default";
397       alias: "elm/genlist/item_odd/1text.1icon.divider/default";
398       inherit: "elm/genlist/item/1text.1icon/default";
399       parts {
400          part { name: "elm.icon";
401             clip_to: "disclip";
402             type: SWALLOW;
403             scale: 1;
404             GENLIST_DESCRIPTION_R("elm.padding.right", fixed: 1 1;)
405             GENLIST_DESCRIPTION_FLIP_ENABLED
406          }
407          /*
408          part { name: "elm.icon.touch";
409             clip_to: "disclip";
410             type: RECT;
411             scale: 1;
412             repeat_events: 1;
413             mouse_events: 1;
414             GENLIST_DESCRIPTION_R("elm.padding.right", color: 255 0 0 50; fixed: 1 0; min: 112 112;)
415             GENLIST_DESCRIPTION_FLIP_ENABLED
416          }
417          */
418       }
419       programs {
420          program {
421             name: "icon_touch";
422             signal: "mouse,up,1";
423             source: "elm.icon.touch";
424             action: SIGNAL_EMIT "mouse,up,1" "elm.icon";
425          }
426       }
427    }
428
429 // 2.2.1.4
430    group { name: "elm/genlist/item/1text.1icon.6/default";
431       alias: "elm/genlist/item_odd/1text.1icon.6/default";
432       alias: "elm/genlist/item_compress/1text.1icon.6/default";
433       alias: "elm/genlist/item_compress_odd/1text.1icon.6/default";
434       inherit: "elm/genlist/item/1text.1icon/default";
435
436       parts {
437          part { name: "elm.icon";
438             description { state: "default" 0.0;
439                fixed: 1 1;
440                min: 0 GENLIST_TEXT_BTN_HEIGHT;
441                            max: 0 GENLIST_TEXT_BTN_HEIGHT;
442
443             }
444          }
445       }
446    }
447 // 2.2.1.8
448    group { name: "elm/genlist/item/1text.1icon.5/default";
449       alias: "elm/genlist/item_odd/1text.1icon.5/default";
450       alias: "elm/genlist/item_compress/1text.1icon.5/default";
451       alias: "elm/genlist/item_compress_odd/1text.1icon.5/default";
452       inherit: "elm/genlist/item/1text.1icon/default";
453
454       parts {
455          part { name: "elm.icon";
456             description { state: "default" 0.0;
457                rel1.offset: GENLIST_PADDING_SIZE_DEFAULT 0;
458                rel2.offset: GENLIST_PADDING_SIZE_DEFAULT 0;
459             }
460          }
461       }
462    }
463
464 // Scalable icon
465    group { name: "elm/genlist/item/1text.1icon.1/default";
466       alias: "elm/genlist/item_odd/1text.1icon.1/default";
467       alias: "elm/genlist/item_compress/1text.1icon.1/default";
468       alias: "elm/genlist/item_compress_odd/1text.1icon.1/default";
469       inherit: "elm/genlist/item/1text.1icon/default";
470
471       parts {
472          part { name: "elm.text";
473             description { state: "default" 0.0;
474                rel1 {
475                   relative: 1.0 0.0;
476                   to_x: "elm.icon";
477                   offset: GENLIST_PADDING_SIZE_DEFAULT 0;
478                }
479                rel2 {
480                   relative: 0.0 1.0;
481                   to_x: "elm.padding.right";
482                }
483             }
484             description { state: "selected" 0.0;
485                inherit: "default" 0.0;
486                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
487             }
488
489          }
490          part { name: "elm.icon";
491             description { state: "default" 0.0;
492                align: 0.0 0.5;
493                rel1 {
494                   relative: 1.0 0.0;
495                   to_x: "elm.padding.left";
496                }
497                rel2 {
498                   relative: 1.0 1.0;
499                   to_x: "elm.padding.left";
500                }
501             }
502             GENLIST_DESCRIPTION_FLIP_ENABLED
503          }
504       }
505    }
506
507 // 2.2.1.9
508    group { name: "elm/genlist/item/1text.2icon.3/default";
509       alias: "elm/genlist/item_odd/1text.2icon.3/default";
510       alias: "elm/genlist/item_compress/1text.2icon.3/default";
511       alias: "elm/genlist/item_compress_odd/1text.2icon.3/default";
512       data.item: "stacking" "above";
513       data.item: "selectraise" "on";
514       data.item: "texts" "elm.text";
515       data.item: "contents" "elm.icon.1 elm.icon.2";
516       data.item: "flips" "elm.flip.content";
517       images {
518          image: "00_list_bar_press_1x80.png" COMP;
519       }
520       parts {
521          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
522          GENLIST_PART_BG_IMAGE
523          GENLIST_PART_BOTTOM_LINE
524          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
525          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
526          part { name: "elm.icon.1";
527             type: SWALLOW;
528             clip_to: "disclip";
529             scale: 1;
530             description { state: "default" 0.0;
531                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
532                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
533                fixed: 1 1;
534                rel1 {
535                   relative: 0.0 0.0;
536                   to_x: "elm.padding.right";
537                }
538                rel2 {
539                   relative: 0.0 1.0;
540                   to_x: "elm.padding.right";
541                }
542                align: 1.0 0.5;
543             }
544             GENLIST_DESCRIPTION_FLIP_ENABLED
545          }
546          part { name: "elm.padding.icon1.left";
547             type: RECT;
548             clip_to: "disclip";
549             scale: 1;
550             description { state: "default" 0.0;
551                min: GENLIST_PADDING_16_INC 0;
552                fixed: 1 0;
553                visible: 0;
554                rel1.to_x: "elm.icon.1";
555                rel2 {
556                   relative: 0.0 1.0;
557                   to_x: "elm.icon.1";
558                }
559                align: 1.0 0.0;
560             }
561          }
562          part { name: "elm.padding.icon1.left2";
563             type: RECT;
564             clip_to: "disclip";
565             scale: 1;
566             description { state: "default" 0.0;
567                min: GENLIST_PADDING_64_INC 0;
568                fixed: 1 0;
569                visible: 0;
570                rel1.to_x: "elm.icon.1";
571                rel2 {
572                   relative: 0.0 1.0;
573                   to_x: "elm.icon.1";
574                }
575                align: 1.0 0.0;
576             }
577          }
578          part { name: "elm.text";
579             type: TEXT;
580             clip_to: "disclip";
581             mouse_events: 0;
582             scale: 1;
583             description { state: "default" 0.0;
584                rel1 {
585                   relative: 1.0 0.0;
586                   to_x: "elm.padding.left";
587                }
588                rel2 {
589                   relative: 0.0 1.0;
590                   to_x: "elm.padding.icon1.left2";
591                }
592                align: 0.0 0.5;
593                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
594                text {
595                   font: "SLP:style=Roman";
596                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
597                   min: 0 1;
598                   align: 0.0 0.5;
599                   text_class: "list_item";
600                }
601             }
602             description { state: "selected" 0.0;
603                inherit: "default" 0.0;
604                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
605             }
606             GENLIST_DESCRIPTION_FLIP_ENABLED
607          }
608          part { name: "elm.padding.text.right";
609             type: RECT;
610             clip_to: "disclip";
611             scale: 1;
612             description { state: "default" 0.0;
613                min: GENLIST_PADDING_16_INC 0;
614                fixed: 1 0;
615                rel1 {
616                   relative: 1.0 0.0;
617                   to_x: "elm.text";
618                }
619                rel2.to_x: "elm.text";
620                align: 0.0 0.0;
621                visible: 0;
622             }
623          }
624          part { name: "elm.icon.2.rect";
625             type: RECT;
626             clip_to: "disclip";
627             scale: 1;
628             description { state: "default" 0.0;
629                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
630                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
631                rel1 {
632                   relative: 1.0 0.0;
633                   to_x: "elm.padding.text.right";
634                }
635                rel2 {
636                   relative: 0.0 1.0;
637                   to_x: "elm.padding.icon1.left";
638                }
639                align: 0.0 0.5;
640                color: 0 0 0 0;
641             }
642             GENLIST_DESCRIPTION_FLIP_ENABLED
643          }
644          part { name: "elm.icon.2";
645             type: SWALLOW;
646             clip_to: "disclip";
647             description { state: "default" 0.0;
648                fixed: 1 1;
649                rel1.to: "elm.icon.2.rect";
650                rel2.to: "elm.icon.2.rect";
651             }
652             GENLIST_DESCRIPTION_FLIP_ENABLED
653          }
654          GENLIST_PART_FLIP
655          GENLIST_PART_DISCLIP
656       }
657       programs {
658          program { name: "go_active";
659             signal: "elm,state,selected";
660             source: "elm";
661             action: STATE_SET "selected" 0.0;
662             target: "bg_image";
663             target: "elm.text";
664             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
665          }
666          program { name: "go_passive";
667             signal: "elm,state,unselected";
668             source: "elm";
669             action: STATE_SET "default" 0.0;
670             target: "bg_image";
671             target: "elm.text";
672             transition: LINEAR 0.1;
673          }
674          program { name: "go_disabled";
675             signal: "elm,state,disabled";
676             source: "elm";
677             action: STATE_SET "disabled" 0.0;
678             target: "disclip";
679          }
680          program { name: "go_enabled";
681             signal: "elm,state,enabled";
682             source: "elm";
683             action: STATE_SET "default" 0.0;
684             target: "disclip";
685          }
686          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
687          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
688       }
689    }
690
691    group { name: "elm/genlist/item_compress/1text.2icon.3.tb/default";
692       inherit: "elm/genlist/item/1text.2icon.3/default";
693       parts {
694          part { name: "elm.text";
695             type: TEXTBLOCK;
696             clip_to: "disclip";
697             mouse_events: 0;
698             scale: 1;
699             description { state: "default" 0.0;
700                rel1 {
701                   relative: 1.0 0.0;
702                   to_x: "elm.padding.left";
703                }
704                rel2 {
705                   relative: 0.0 1.0;
706                   to_x: "elm.padding.icon1.left2";
707                }
708                align: 0.0 0.5;
709                text {
710                   style: "genlist_style_list_main_text_unread";
711                   min: 0 1;
712                   max: 1 0;
713                   align: 0.0 0.5;
714                }
715             }
716             description { state: "selected" 0.0;
717                inherit: "default" 0.0;
718                text.style: "genlist_style_list_main_text_focus";
719             }
720             GENLIST_DESCRIPTION_FLIP_ENABLED
721          }
722       }
723    }
724
725
726 // 2.2.1.10
727 // 2.2.1.20
728    group { name: "elm/genlist/item/1text.1icon.2/default";
729       alias: "elm/genlist/item_odd/1text.1icon.2/default";
730       alias: "elm/genlist/item_compress/1text.1icon.2/default";
731       alias: "elm/genlist/item_compress_odd/1text.1icon.2/default";
732       inherit: "elm/genlist/item/1text.1icon.1/default";
733
734       parts {
735          part { name: "elm.icon";
736             description { state: "default" 0.0;
737                fixed: 1 1;
738                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
739                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
740             }
741             GENLIST_DESCRIPTION_FLIP_ENABLED
742          }
743       }
744    }
745
746 // 2.2.1.10 textblock
747    group { name: "elm/genlist/item_compress/1text.1icon.2.tb/default";
748       inherit: "elm/genlist/item/1text.1icon.2/default";
749       parts {
750          part { name: "elm.text";
751             clip_to: "disclip";
752             type: TEXTBLOCK;
753             mouse_events: 0;
754             scale: 1;
755             description { state: "default" 0.0;
756                align: 0.0 0.5;
757                rel1 {
758                   relative: 1.0 0.0;
759                   to_x: "elm.icon";
760                }
761                rel2 {
762                   relative: 0.0 1.0;
763                   to_x: "elm.padding.right";
764                }
765                text {
766                   style: "genlist_style_list_main_text_unread";
767                   min: 0 1;
768                   align: 0.0 0.5;
769                }
770             }
771             description { state: "selected" 0.0;
772                inherit: "default" 0.0;
773                // FIXME: Why is not textblock changed by text.style?
774                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
775                text.style: "genlist_style_list_main_text_focus";
776             }
777             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
778             GENLIST_DESCRIPTION_FLIP_ENABLED
779          }
780       }
781    }
782
783 // 2.2.1.16
784    group { name: "elm/genlist/item/1text.1icon.3/default";
785       alias: "elm/genlist/item_odd/1text.1icon.3/default";
786       alias: "elm/genlist/item_compress/1text.1icon.3/default";
787       alias: "elm/genlist/item_compress_odd/1text.1icon.3/default";
788       inherit: "elm/genlist/item/1text.1icon.1/default";
789
790       parts {
791          part { name: "elm.icon";
792             description { state: "default" 0.0;
793                fixed: 1 1;
794                min: GENLIST_ICON_CHECK_SIZE GENLIST_ICON_CHECK_SIZE;
795                max: GENLIST_ICON_CHECK_SIZE GENLIST_ICON_CHECK_SIZE;
796             }
797             GENLIST_DESCRIPTION_FLIP_ENABLED
798          }
799       }
800    }
801
802
803 // 2.2.1.13
804 // 2.2.1.14
805 // 2.2.1.15
806    group { name: "elm/genlist/item/1text.2icon/default";
807       alias: "elm/genlist/item_odd/1text.2icon/default";
808       alias: "elm/genlist/item_compress/1text.2icon/default";
809       alias: "elm/genlist/item_compress_odd/1text.2icon/default";
810       data.item: "stacking" "above";
811       data.item: "selectraise" "on";
812       data.item: "texts" "elm.text";
813       data.item: "contents" "elm.icon.1 elm.icon.2";
814       data.item: "flips" "elm.flip.content";
815       images {
816          image: "00_list_bar_press_1x80.png" COMP;
817       }
818       parts {
819          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
820          GENLIST_PART_BG_IMAGE
821          GENLIST_PART_BOTTOM_LINE
822          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
823          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
824          part { name: "elm.icon.1";
825             clip_to: "disclip";
826             type: SWALLOW;
827             scale: 1;
828             description { state: "default" 0.0;
829                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
830                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
831                fixed: 1 1;
832                rel1 {
833                   relative: 1.0 0.0;
834                   to_x: "elm.padding.left";
835                }
836                rel2 {
837                   relative: 1.0 1.0;
838                   to_x: "elm.padding.left";
839                }
840                align: 0.0 0.5;
841             }
842             GENLIST_DESCRIPTION_FLIP_ENABLED
843          }
844          part { name: "elm.padding.icon1.right";
845             clip_to: "disclip";
846             type: RECT;
847             scale: 1;
848             description { state: "default" 0.0;
849                min: GENLIST_SIZE_16_INC 0;
850                fixed: 1 0;
851                rel1 {
852                   relative: 1.0 0.0;
853                   to_x: "elm.icon.1";
854                }
855                rel2.to_x: "elm.icon.1";
856                visible: 0;
857             }
858          }
859          part { name: "elm.icon.2";
860             clip_to: "disclip";
861             type: SWALLOW;
862             scale: 1;
863             description { state: "default" 0.0;
864                fixed: 1 1;
865                rel1 {
866                   relative: 0.0 0.0;
867                   to_x: "elm.padding.right";
868                }
869                rel2 {
870                   relative: 0.0 1.0;
871                   to_x: "elm.padding.right";
872                }
873                align: 1.0 0.5;
874             }
875             GENLIST_DESCRIPTION_FLIP_ENABLED
876          }
877          part { name: "elm.padding.icon2.left";
878             clip_to: "disclip";
879             type: RECT;
880             scale: 1;
881             description { state: "default" 0.0;
882                min: GENLIST_PADDING_16_INC 0;
883                fixed: 1 0;
884                rel1.to_x: "elm.icon.2";
885                rel2 {
886                   relative: 0.0 1.0;
887                   to_x: "elm.icon.2";
888                }
889                align: 1.0 0.0;
890                visible: 0;
891             }
892          }
893          part { name: "elm.text";
894             clip_to: "disclip";
895             type: TEXT;
896             mouse_events: 0;
897             scale: 1;
898             description { state: "default" 0.0;
899                rel1 {
900                   relative: 1.0 0.0;
901                   to_x: "elm.padding.icon1.right";
902                }
903                rel2 {
904                   relative: 0.0 1.0;
905                   to_x: "elm.padding.icon2.left";
906                }
907                align: 0.0 0.5;
908                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
909                text {
910                   font: "SLP:style=Roman";
911                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
912                   min: 0 1;
913                   align: 0.0 0.5;
914                   text_class: "list_item";
915                }
916             }
917             description { state: "selected" 0.0;
918                inherit: "default" 0.0;
919                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
920             }
921             GENLIST_DESCRIPTION_FLIP_ENABLED
922          }
923          GENLIST_PART_FLIP
924          GENLIST_PART_DISCLIP
925       }
926       programs {
927          program { name: "go_active";
928             signal: "elm,state,selected";
929             source: "elm";
930             action: STATE_SET "selected" 0.0;
931             target: "bg_image";
932             target: "elm.text";
933             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
934          }
935          program { name: "go_passive";
936             signal: "elm,state,unselected";
937             source: "elm";
938             action: STATE_SET "default" 0.0;
939             target: "bg_image";
940             target: "elm.text";
941             transition: LINEAR 0.1;
942          }
943          program { name: "go_disabled";
944             signal: "elm,state,disabled";
945             source: "elm";
946             action: STATE_SET "disabled" 0.0;
947             target: "disclip";
948          }
949          program { name: "go_enabled";
950             signal: "elm,state,enabled";
951             source: "elm";
952             action: STATE_SET "default" 0.0;
953             target: "disclip";
954          }
955          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
956          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
957       }
958    }
959
960 // 2.2.1.18
961    group { name: "elm/genlist/item/1text.2icon.2/default";
962       alias: "elm/genlist/item_odd/1text.2icon.2/default";
963       alias: "elm/genlist/item_compress/1text.2icon.2/default";
964       alias: "elm/genlist/item_compress_odd/1text.2icon.2/default";
965       data.item: "stacking" "above";
966       data.item: "selectraise" "on";
967       data.item: "texts" "elm.text";
968       data.item: "contents" "elm.icon.1 elm.icon.2";
969       data.item: "flips" "elm.flip.content";
970       images {
971          image: "00_list_bar_press_1x80.png" COMP;
972       }
973       parts {
974          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
975          GENLIST_PART_BG_IMAGE
976          GENLIST_PART_BOTTOM_LINE
977          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
978          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
979          part { name: "elm.icon.1";
980             clip_to: "disclip";
981             type: SWALLOW;
982             scale: 1;
983             description { state: "default" 0.0;
984                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
985                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
986                fixed: 1 1;
987                rel1 {
988                   relative: 1.0 0.0;
989                   to_x: "elm.padding.left";
990                }
991                rel2.to_x: "elm.padding.left";
992                align: 0.0 0.5;
993             }
994             GENLIST_DESCRIPTION_FLIP_ENABLED
995          }
996          part { name: "elm.padding.icon1.right";
997             clip_to: "disclip";
998             type: RECT;
999             scale: 1;
1000             description { state: "default" 0.0;
1001                min: GENLIST_PADDING_16_INC 0;
1002                fixed: 1 0;
1003                rel1 {
1004                   relative: 1.0 0.0;
1005                   to_x: "elm.icon.1";
1006                }
1007                rel2.to_x: "elm.icon.1";
1008                align: 0.0 0.0;
1009                visible: 0;
1010             }
1011          }
1012          part { name: "elm.icon.2";
1013             clip_to: "disclip";
1014             type: SWALLOW;
1015             scale: 1;
1016             description { state: "default" 0.0;
1017                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1018                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1019                fixed: 1 1;
1020                rel1 {
1021                   relative: 1.0 0.0;
1022                   to_x: "elm.padding.icon1.right";
1023                }
1024                rel2.to_x: "elm.padding.icon1.right";
1025                align: 0.0 0.5;
1026             }
1027             GENLIST_DESCRIPTION_FLIP_ENABLED
1028          }
1029          part { name: "elm.padding.icon2.right";
1030             type: RECT;
1031             scale: 1;
1032             description { state: "default" 0.0;
1033                min: GENLIST_PADDING_16_INC 0;
1034                fixed: 1 0;
1035                rel1 {
1036                   relative: 1.0 0.0;
1037                   to_x: "elm.icon.2";
1038                }
1039                rel2.to_x: "elm.icon.2";
1040                align: 0.0 0.5;
1041                visible: 0;
1042             }
1043          }
1044          part { name: "elm.text";
1045             clip_to: "disclip";
1046             type: TEXT;
1047             mouse_events: 0;
1048             scale: 1;
1049             description { state: "default" 0.0;
1050                rel1 {
1051                   relative: 1.0 0.0;
1052                   to_x: "elm.padding.icon2.right";
1053                }
1054                rel2 {
1055                   relative: 0.0 1.0;
1056                   to_x: "elm.padding.right";
1057                }
1058                align: 0.0 0.5;
1059                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
1060                text {
1061                   font: "SLP:style=Roman";
1062                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
1063                   min: 0 1;
1064                   align: 0.0 0.5;
1065                   text_class: "list_item";
1066                }
1067             }
1068             description { state: "selected" 0.0;
1069                inherit: "default" 0.0;
1070                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
1071             }
1072             GENLIST_DESCRIPTION_FLIP_ENABLED
1073          }
1074          GENLIST_PART_FLIP
1075          GENLIST_PART_DISCLIP
1076       }
1077       programs {
1078          program { name: "go_active";
1079             signal: "elm,state,selected";
1080             source: "elm";
1081             action: STATE_SET "selected" 0.0;
1082             target: "bg_image";
1083             target: "elm.text";
1084             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1085          }
1086          program { name: "go_passive";
1087             signal: "elm,state,unselected";
1088             source: "elm";
1089             action: STATE_SET "default" 0.0;
1090             target: "bg_image";
1091             target: "elm.text";
1092             transition: LINEAR 0.1;
1093          }
1094          program { name: "go_disabled";
1095             signal: "elm,state,disabled";
1096             source: "elm";
1097             action: STATE_SET "disabled" 0.0;
1098             target: "disclip";
1099          }
1100          program { name: "go_enabled";
1101             signal: "elm,state,enabled";
1102             source: "elm";
1103             action: STATE_SET "default" 0.0;
1104             target: "disclip";
1105          }
1106          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
1107          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1108       }
1109    }
1110
1111 // 3.1.14
1112    group { name: "elm/genlist/item/1text.2icon.6/default";
1113       alias: "elm/genlist/item_odd/1text.2icon.6/default";
1114       alias: "elm/genlist/item_compress/1text.2icon.6/default";
1115       alias: "elm/genlist/item_compress_odd/1text.2icon.6/default";
1116       data.item: "stacking" "above";
1117       data.item: "selectraise" "on";
1118       data.item: "texts" "elm.text";
1119       data.item: "contents" "elm.icon.1 elm.icon.2";
1120       data.item: "flips" "elm.flip.content";
1121       images {
1122          image: "00_list_bar_press_1x80.png" COMP;
1123       }
1124       parts {
1125          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1126          GENLIST_PART_BG_IMAGE
1127          GENLIST_PART_BOTTOM_LINE
1128          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1129          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1130          part { name: "elm.icon.1";
1131             clip_to: "disclip";
1132             type: SWALLOW;
1133             scale: 1;
1134             description { state: "default" 0.0;
1135                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1136                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1137                fixed: 1 1;
1138                rel1 {
1139                   relative: 1.0 0.0;
1140                   to_x: "elm.padding.left";
1141                }
1142                rel2 {
1143                   relative: 1.0 1.0;
1144                   to_x: "elm.padding.left";
1145                }
1146                align: 0.0 0.5;
1147             }
1148             GENLIST_DESCRIPTION_FLIP_ENABLED
1149          }
1150          part { name: "elm.padding.icon1.right";
1151             clip_to: "disclip";
1152             type: RECT;
1153             scale: 1;
1154             description { state: "default" 0.0;
1155                min: GENLIST_PADDING_16_INC 0;
1156                fixed: 1 0;
1157                rel1 {
1158                   relative: 1.0 0.0;
1159                   to_x: "elm.icon.1";
1160                }
1161                rel2.to_x: "elm.icon.1";
1162                visible: 0;
1163             }
1164          }
1165          part { name: "elm.icon.2";
1166             clip_to: "disclip";
1167             type: SWALLOW;
1168             scale: 1;
1169             description { state: "default" 0.0;
1170                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1171                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1172                fixed: 1 1;
1173                rel1 {
1174                   relative: 0.0 0.0;
1175                   to_x: "elm.padding.right";
1176                }
1177                rel2 {
1178                   relative: 0.0 1.0;
1179                   to_x: "elm.padding.right";
1180                }
1181                align: 1.0 0.5;
1182             }
1183             GENLIST_DESCRIPTION_FLIP_ENABLED
1184          }
1185          part { name: "elm.padding.icon2.left";
1186             clip_to: "disclip";
1187             type: RECT;
1188             scale: 1;
1189             description { state: "default" 0.0;
1190                min: GENLIST_PADDING_16_INC 0;
1191                fixed: 1 0;
1192                rel1.to_x: "elm.icon.2";
1193                rel2 {
1194                   relative: 0.0 1.0;
1195                   to_x: "elm.icon.2";
1196                }
1197                align: 1.0 0.0;
1198                visible: 0;
1199             }
1200          }
1201          part { name: "elm.text";
1202             clip_to: "disclip";
1203             type: TEXT;
1204             mouse_events: 0;
1205             scale: 1;
1206             description { state: "default" 0.0;
1207                rel1 {
1208                   relative: 1.0 0.0;
1209                   to_x: "elm.padding.icon1.right";
1210                }
1211                rel2 {
1212                   relative: 0.0 1.0;
1213                   to_x: "elm.padding.icon2.left";
1214                }
1215                align: 0.0 0.5;
1216                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
1217                text {
1218                   font: "SLP:style=Roman";
1219                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
1220                   min: 0 1;
1221                   align: 0.0 0.5;
1222                   text_class: "list_item";
1223                }
1224             }
1225             description { state: "selected" 0.0;
1226                inherit: "default" 0.0;
1227                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
1228             }
1229             GENLIST_DESCRIPTION_FLIP_ENABLED
1230          }
1231          GENLIST_PART_FLIP
1232          GENLIST_PART_DISCLIP
1233       }
1234       programs {
1235          program { name: "go_active";
1236             signal: "elm,state,selected";
1237             source: "elm";
1238             action: STATE_SET "selected" 0.0;
1239             target: "bg_image";
1240             target: "elm.text";
1241             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1242          }
1243          program { name: "go_passive";
1244             signal: "elm,state,unselected";
1245             source: "elm";
1246             action: STATE_SET "default" 0.0;
1247             target: "bg_image";
1248             target: "elm.text";
1249             transition: LINEAR 0.1;
1250          }
1251          program { name: "go_disabled";
1252             signal: "elm,state,disabled";
1253             source: "elm";
1254             action: STATE_SET "disabled" 0.0;
1255             target: "disclip";
1256          }
1257          program { name: "go_enabled";
1258             signal: "elm,state,enabled";
1259             source: "elm";
1260             action: STATE_SET "default" 0.0;
1261             target: "disclip";
1262          }
1263          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
1264          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1265       }
1266    }
1267
1268    group { name: "elm/genlist/item_compress/1text.2icon.6.tb/default";
1269       inherit: "elm/genlist/item/1text.2icon.6/default";
1270       parts {
1271          part { name: "elm.text";
1272             clip_to: "disclip";
1273             type: TEXTBLOCK;
1274             mouse_events: 0;
1275             scale: 1;
1276             description { state: "default" 0.0;
1277                rel1 {
1278                   relative: 1.0 0.0;
1279                   to_x: "elm.padding.icon1.right";
1280                }
1281                rel2 {
1282                   relative: 0.0 1.0;
1283                   to_x: "elm.padding.icon2.left";
1284                }
1285                align: 0.0 0.5;
1286                text {
1287                   style: "genlist_style_list_main_text_unread";
1288                   min: 0 1;
1289                   align: 0.0 0.5;
1290                }
1291             }
1292             description { state: "selected" 0.0;
1293                inherit: "default" 0.0;
1294                text.style: "genlist_style_list_main_text_focus";
1295             }
1296             GENLIST_DESCRIPTION_FLIP_ENABLED
1297          }
1298       }
1299    }
1300
1301 // 2Text -------------------------------------------------------------------------
1302 // 2.2.1.2
1303    group { name: "elm/genlist/item/2text/default";
1304       alias: "elm/genlist/item_odd/2text/default";
1305       alias: "elm/genlist/item_compress/2text/default";
1306       alias: "elm/genlist/item_compress_odd/2text/default";
1307
1308       data.item: "stacking" "above";
1309       data.item: "selectraise" "on";
1310       data.item: "texts" "elm.text.1 elm.text.2";
1311       data.item: "flips" "elm.flip.icon elm.flip.content";
1312       images {
1313          image: "00_list_bar_press_1x80.png" COMP;
1314       }
1315       parts {
1316          GENLIST_PART_DISCLIP
1317          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1318          GENLIST_PART_BG_IMAGE
1319          GENLIST_PART_BOTTOM_LINE
1320          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1321          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1322          GENLIST_PART_FLIP
1323          part { name: "elm.text.1";
1324             clip_to: "disclip";
1325             type: TEXT;
1326             mouse_events: 0;
1327             scale: 1;
1328             GENLIST_DESCRIPTION_LR("elm.padding.left", "elm.text.2.left",
1329                align: 0 0.5;
1330                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
1331                text {
1332                   font: "SLP:style=Roman";
1333                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
1334                   min: 0 1;
1335                   align: 0.0 0.5;
1336                   text_class: "list_item";
1337                )
1338             }
1339             description { state: "selected" 0.0;
1340                inherit: "default" 0.0;
1341                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
1342             }
1343             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1344             GENLIST_DESCRIPTION_FLIP_ENABLED
1345          }
1346          GENLIST_PART_PADDING_RIGHT_TO("elm.text.2.left", "elm.text.2", 16)
1347          part { name: "elm.text.2";
1348             clip_to: "disclip";
1349             type: TEXT;
1350             mouse_events: 0;
1351             scale: 1;
1352             GENLIST_DESCRIPTION_R("elm.padding.right",
1353                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
1354                text {
1355                   font: "SLP:style=Medium";
1356                   size: GENLIST_LIST_SUB_TEXT_SIZE;
1357                   // FIXME: This text never stop in X axis
1358                   min: 1 1;
1359                   align: 1.0 0.5;
1360                   text_class: "slp_medium";
1361                }
1362             )
1363             description { state: "selected" 0.0;
1364                inherit: "default" 0.0;
1365                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
1366             }
1367             GENLIST_DESCRIPTION_FLIP_ENABLED
1368          }
1369       }
1370       programs {
1371        program { name: "go_active";
1372             signal: "elm,state,selected";
1373             source: "elm";
1374             action: STATE_SET "selected" 0.0;
1375             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
1376             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1377          }
1378          program { name: "go_passive";
1379             signal: "elm,state,unselected";
1380             source: "elm";
1381             action: STATE_SET "default" 0.0;
1382             target: "bg_image";
1383             target: "elm.text.1";
1384             target: "elm.text.2";
1385             transition: LINEAR 0.1;
1386          }
1387          program { name: "go_disabled";
1388             signal: "elm,state,disabled";
1389             source: "elm";
1390             action: STATE_SET "disabled" 0.0;
1391             target: "disclip";
1392          }
1393          program { name: "go_enabled";
1394             signal: "elm,state,enabled";
1395             source: "elm";
1396             action: STATE_SET "default" 0.0;
1397             target: "disclip";
1398          }
1399          GENLIST_PROGRAM_FLIP_2TEXT
1400          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1401       }
1402    }
1403
1404 // 2.2.1.3
1405    group { name: "elm/genlist/item/2text.6/default";
1406       alias: "elm/genlist/item_odd/2text.6/default";
1407       alias: "elm/genlist/item_compress/2text.6/default";
1408       alias: "elm/genlist/item_compress_odd/2text.6/default";
1409       inherit: "elm/genlist/item/2text/default";
1410
1411       parts {
1412          part { name: "elm.text.2";
1413             description { state: "default" 0.0;
1414                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
1415             }
1416          }
1417       }
1418    }
1419
1420
1421 // 2.2.1.11
1422 // 3.1.11
1423    group { name: "elm/genlist/item/2text.1icon/default";
1424       alias: "elm/genlist/item_odd/2text.1icon/default";
1425       alias: "elm/genlist/item_compress/2text.1icon/default";
1426       alias: "elm/genlist/item_compress_odd/2text.1icon/default";
1427       data.item: "stacking" "above";
1428       data.item: "selectraise" "on";
1429       data.item: "texts" "elm.text.1 elm.text.2";
1430       data.item: "contents" "elm.icon";
1431       data.item: "flips" "elm.flip.content";
1432       images {
1433          image: "00_list_bar_press_1x80.png" COMP;
1434       }
1435       parts {
1436          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1437          GENLIST_PART_BG_IMAGE
1438          GENLIST_PART_BOTTOM_LINE
1439          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1440          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1441          part { name: "elm.icon";
1442             clip_to: "disclip";
1443             type: SWALLOW;
1444             scale: 1;
1445             GENLIST_DESCRIPTION_L("elm.padding.left",
1446                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1447                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1448                fixed: 1 1;
1449             )
1450             GENLIST_DESCRIPTION_FLIP_ENABLED
1451          }
1452          GENLIST_PART_PADDING_LEFT_TO("elm.padding.icon.right", "elm.icon", GENLIST_PADDING_SIZE_DEFAULT)
1453          part { name: "elm.text.2";
1454             clip_to: "disclip";
1455             type: TEXT;
1456             mouse_events: 0;
1457             scale: 1;
1458             GENLIST_DESCRIPTION_R("elm.padding.right",
1459                min: 300 0;
1460                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
1461                text {
1462                   font: "SLP:style=Medium";
1463                   size: GENLIST_LIST_SUB_TEXT_SIZE;
1464                   min: 0 1;
1465                   align: 1.0 0.5;
1466                   text_class: "slp_medium";
1467                }
1468             )
1469             description { state: "selected" 0.0;
1470                inherit: "default" 0.0;
1471                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
1472             }
1473             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1474             GENLIST_DESCRIPTION_FLIP_ENABLED
1475          }
1476          part { name: "elm.text.1";
1477             clip_to: "disclip";
1478             type: TEXT;
1479             mouse_events: 0;
1480             scale: 1;
1481             GENLIST_DESCRIPTION_LR("elm.padding.icon.right", "elm.text.2",
1482                align: 0 0.5;
1483                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
1484                text {
1485                   font: "SLP:style=Roman";
1486                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
1487                   min: 0 1;
1488                   align: 0.0 0.5;
1489                   text_class: "list_item";
1490                }
1491             )
1492             description { state: "selected" 0.0;
1493                inherit: "default" 0.0;
1494                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
1495             }
1496             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1497             GENLIST_DESCRIPTION_FLIP_ENABLED
1498          }
1499          GENLIST_PART_FLIP
1500          GENLIST_PART_DISCLIP
1501       }
1502       programs {
1503          program { name: "go_active";
1504             signal: "elm,state,selected";
1505             source: "elm";
1506             action: STATE_SET "selected" 0.0;
1507             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
1508             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1509          }
1510          program { name: "go_passive";
1511             signal: "elm,state,unselected";
1512             source: "elm";
1513             action: STATE_SET "default" 0.0;
1514             target: "bg_image";
1515             target: "elm.text.1";
1516             target: "elm.text.2";
1517             transition: LINEAR 0.1;
1518          }
1519          program { name: "go_disabled";
1520             signal: "elm,state,disabled";
1521             source: "elm";
1522             action: STATE_SET "disabled" 0.0;
1523             target: "disclip";
1524          }
1525          program { name: "go_enabled";
1526             signal: "elm,state,enabled";
1527             source: "elm";
1528             action: STATE_SET "default" 0.0;
1529             target: "disclip";
1530          }
1531          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
1532          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1533       }
1534    }
1535
1536 // 2.2.1.12
1537    group { name: "elm/genlist/item/2text.1icon.6/default";
1538       alias: "elm/genlist/item_odd/2text.1icon.6/default";
1539       alias: "elm/genlist/item_compress/2text.1icon.6/default";
1540       alias: "elm/genlist/item_compress_odd/2text.1icon.6/default";
1541       data.item: "stacking" "above";
1542       data.item: "selectraise" "on";
1543       data.item: "texts" "elm.text.1 elm.text.2";
1544       data.item: "contents" "elm.icon";
1545       data.item: "flips" "elm.flip.content";
1546       images {
1547          image: "00_list_bar_press_1x80.png" COMP;
1548       }
1549       parts {
1550          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1551          GENLIST_PART_BG_IMAGE
1552          GENLIST_PART_BOTTOM_LINE
1553          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1554          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1555          part { name: "elm.icon";
1556             clip_to: "disclip";
1557             type: SWALLOW;
1558             scale: 1;
1559             description { state: "default" 0.0;
1560                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1561                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1562                fixed: 1 1;
1563                rel1 {
1564                   relative: 1.0 0.0;
1565                   to_x: "elm.padding.left";
1566                }
1567                rel2 {
1568                   relative: 1.0 1.0;
1569                   to_x: "elm.padding.left";
1570                }
1571                align: 0.0 0.5;
1572             }
1573             GENLIST_DESCRIPTION_FLIP_ENABLED
1574          }
1575          part { name: "elm.padding.icon.right";
1576             clip_to: "disclip";
1577             type: RECT;
1578             scale: 1;
1579             description { state: "default" 0.0;
1580                min: GENLIST_PADDING_16_INC 0;
1581                fixed: 1 0;
1582                rel1 {
1583                   relative: 1.0 0.0;
1584                   to_x: "elm.icon";
1585                }
1586                rel2.to_x: "elm.icon";
1587                visible: 0;
1588             }
1589          }
1590          part { name: "elm.text.2";
1591             clip_to: "disclip";
1592             type: TEXT;
1593             mouse_events: 0;
1594             scale: 1;
1595             description { state: "default" 0.0;
1596                min: GENLIST_SIZE_133_INC 0;
1597                fixed: 1 0;
1598                rel1.to_x: "elm.padding.right";
1599                rel2 {
1600                   relative: 0.0 1.0;
1601                   to_x: "elm.padding.right";
1602                }
1603                align: 1.0 0.5;
1604                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
1605                text {
1606                   font: "SLP:style=Medium";
1607                   size: GENLIST_FONT_32_INC;
1608                   min: 0 1;
1609                   align: 1.0 0.5;
1610                   text_class: "slp_medium";
1611                }
1612             }
1613             description { state: "selected" 0.0;
1614                inherit: "default" 0.0;
1615                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
1616             }
1617             GENLIST_DESCRIPTION_FLIP_ENABLED
1618          }
1619          part { name: "elm.padding.text2.left";
1620             clip_to: "disclip";
1621             type: RECT;
1622             mouse_events: 0;
1623             scale: 1;
1624             description { state: "default" 0.0;
1625                min: GENLIST_ICON_SMALL_SIZE 0;
1626                fixed: 1 0;
1627                rel1.to_x: "elm.text.2";
1628                rel2 {
1629                   relative: 0.0 1.0;
1630                   to_x: "elm.text.2";
1631                }
1632                visible: 0;
1633                align: 1.0 0.5;
1634             }
1635          }
1636          part { name: "elm.text.1";
1637             clip_to: "disclip";
1638             type: TEXT;
1639             mouse_events: 0;
1640             scale: 1;
1641             description { state: "default" 0.0;
1642                rel1 {
1643                   relative: 1.0 0.0;
1644                   to_x: "elm.padding.icon.right";
1645                }
1646                rel2 {
1647                   relative: 0.0 1.0;
1648                   to_x: "elm.padding.text2.left";
1649                }
1650                align: 0.0 0.5;
1651                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
1652                text {
1653                   font: "SLP:style=Roman";
1654                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
1655                   min: 0 1;
1656                   align: 0.0 0.5;
1657                   text_class: "list_item";
1658                }
1659             }
1660             description { state: "selected" 0.0;
1661                inherit: "default" 0.0;
1662                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
1663             }
1664             GENLIST_DESCRIPTION_FLIP_ENABLED
1665          }
1666          GENLIST_PART_FLIP
1667          GENLIST_PART_DISCLIP
1668       }
1669       programs {
1670          program { name: "go_active";
1671             signal: "elm,state,selected";
1672             source: "elm";
1673             action: STATE_SET "selected" 0.0;
1674             target: "bg_image";
1675             target: "elm.text.1";
1676             target: "elm.text.2";
1677             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1678          }
1679          program { name: "go_passive";
1680             signal: "elm,state,unselected";
1681             source: "elm";
1682             action: STATE_SET "default" 0.0;
1683             target: "bg_image";
1684             target: "elm.text.1";
1685             target: "elm.text.2";
1686             transition: LINEAR 0.1;
1687          }
1688          program { name: "go_disabled";
1689             signal: "elm,state,disabled";
1690             source: "elm";
1691             action: STATE_SET "disabled" 0.0;
1692             target: "disclip";
1693          }
1694          program { name: "go_enabled";
1695             signal: "elm,state,enabled";
1696             source: "elm";
1697             action: STATE_SET "default" 0.0;
1698             target: "disclip";
1699          }
1700          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
1701          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1702       }
1703    }
1704
1705
1706 // 3.1.19
1707    group { name: "elm/genlist/item/1text.3icon/default";
1708       alias: "elm/genlist/item_odd/1text.3icon/default";
1709       alias: "elm/genlist/item_compress/1text.3icon/default";
1710       alias: "elm/genlist/item_compress_odd/1text.3icon/default";
1711       data.item: "stacking" "above";
1712       data.item: "selectraise" "on";
1713       data.item: "texts" "elm.text";
1714       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
1715       data.item: "flips" "elm.flip.content";
1716       images {
1717          image: "00_list_bar_press_1x80.png" COMP;
1718       }
1719       parts {
1720          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1721          GENLIST_PART_BG_IMAGE
1722          GENLIST_PART_BOTTOM_LINE
1723          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1724          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1725          part { name: "elm.icon.1";
1726             clip_to: "disclip";
1727             type: SWALLOW;
1728             scale: 1;
1729             description { state: "default" 0.0;
1730                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1731                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1732                fixed: 1 1;
1733                rel1 {
1734                   relative: 1.0 0.0;
1735                   to_x: "elm.padding.left";
1736                }
1737                rel2.to_x: "elm.padding.left";
1738                align: 0.0 0.5;
1739             }
1740             GENLIST_DESCRIPTION_FLIP_ENABLED
1741          }
1742          part { name: "elm.padding.icon1.right";
1743             clip_to: "disclip";
1744             type: RECT;
1745             scale: 1;
1746             description { state: "default" 0.0;
1747                min: GENLIST_PADDING_16_INC 0;
1748                fixed: 1 0;
1749                rel1 {
1750                   relative: 1.0 0.0;
1751                   to_x: "elm.icon.1";
1752                }
1753                rel2.to_x: "elm.icon.1";
1754                align: 0.0 0.0;
1755                visible: 0;
1756             }
1757          }
1758          part { name: "elm.icon.2";
1759             clip_to: "disclip";
1760             type: SWALLOW;
1761             scale: 1;
1762             description { state: "default" 0.0;
1763                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1764                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1765                fixed: 1 1;
1766                rel1 {
1767                   relative: 1.0 0.0;
1768                   to_x: "elm.padding.icon1.right";
1769                }
1770                rel2.to_x: "elm.padding.icon1.right";
1771                align: 0.0 0.5;
1772             }
1773             GENLIST_DESCRIPTION_FLIP_ENABLED
1774          }
1775          part { name: "elm.padding.icon2.right";
1776             clip_to: "disclip";
1777             type: RECT;
1778             scale: 1;
1779             description { state: "default" 0.0;
1780                min: GENLIST_PADDING_16_INC 0;
1781                fixed: 1 0;
1782                rel1 {
1783                   relative: 1.0 0.0;
1784                   to_x: "elm.icon.2";
1785                }
1786                rel2.to_x: "elm.icon.2";
1787                visible: 0;
1788             }
1789          }
1790          part { name: "elm.icon.3";
1791             clip_to: "disclip";
1792             type: SWALLOW;
1793             scale: 1;
1794             description { state: "default" 0.0;
1795                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1796                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1797                fixed: 1 1;
1798                rel1 {
1799                   relative: 0.0 0.0;
1800                   to_x: "elm.padding.right";
1801                }
1802                rel2 {
1803                   relative: 0.0 1.0;
1804                   to_x: "elm.padding.right";
1805                }
1806                align: 1.0 0.5;
1807             }
1808             GENLIST_DESCRIPTION_FLIP_ENABLED
1809          }
1810          part { name: "elm.padding.icon3.left";
1811             clip_to: "disclip";
1812             type: RECT;
1813             scale: 1;
1814             description { state: "default" 0.0;
1815                min: GENLIST_PADDING_16_INC 0;
1816                fixed: 1 0;
1817                rel1.to_x: "elm.icon.3";
1818                rel2 {
1819                   relative: 0.0 1.0;
1820                   to_x: "elm.icon.3";
1821                }
1822                align: 1.0 0.0;
1823                visible: 0;
1824             }
1825          }
1826          part { name: "elm.text";
1827             clip_to: "disclip";
1828             type: TEXT;
1829             mouse_events: 0;
1830             scale: 1;
1831             description { state: "default" 0.0;
1832                rel1 {
1833                   relative: 1.0 0.0;
1834                   to_x: "elm.padding.icon2.right";
1835                }
1836                rel2 {
1837                   relative: 0.0 1.0;
1838                   to_x: "elm.padding.icon3.left";
1839                }
1840                align: 0.0 0.5;
1841                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
1842                text {
1843                   font: "SLP:style=Roman";
1844                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
1845                   min: 0 1;
1846                   align: 0.0 0.5;
1847                   text_class: "list_item";
1848                }
1849             }
1850             description { state: "selected" 0.0;
1851                inherit: "default" 0.0;
1852                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
1853             }
1854             GENLIST_DESCRIPTION_FLIP_ENABLED
1855          }
1856          GENLIST_PART_FLIP
1857          GENLIST_PART_DISCLIP
1858       }
1859       programs {
1860          program { name: "go_active";
1861             signal: "elm,state,selected";
1862             source: "elm";
1863             action: STATE_SET "selected" 0.0;
1864             target: "bg_image";
1865             target: "elm.text";
1866             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1867          }
1868          program { name: "go_passive";
1869             signal: "elm,state,unselected";
1870             source: "elm";
1871             action: STATE_SET "default" 0.0;
1872             target: "bg_image";
1873             target: "elm.text";
1874             transition: LINEAR 0.1;
1875          }
1876          program { name: "go_disabled";
1877             signal: "elm,state,disabled";
1878             source: "elm";
1879             action: STATE_SET "disabled" 0.0;
1880             target: "disclip";
1881          }
1882          program { name: "go_enabled";
1883             signal: "elm,state,enabled";
1884             source: "elm";
1885             action: STATE_SET "default" 0.0;
1886             target: "disclip";
1887          }
1888          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
1889          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1890       }
1891    }
1892
1893 // 3.1.24
1894    group { name: "elm/genlist/item/1text.3icon.2/default";
1895       alias: "elm/genlist/item_odd/1text.3icon.2/default";
1896       alias: "elm/genlist/item_compress/1text.3icon.2/default";
1897       alias: "elm/genlist/item_compress_odd/1text.3icon.2/default";
1898       data.item: "stacking" "above";
1899       data.item: "selectraise" "on";
1900       data.item: "texts" "elm.text";
1901       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
1902       data.item: "flips" "elm.flip.content";
1903       images {
1904          image: "00_list_bar_press_1x80.png" COMP;
1905       }
1906       parts {
1907          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1908          GENLIST_PART_BG_IMAGE
1909          GENLIST_PART_BOTTOM_LINE
1910          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1911          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1912          part { name: "elm.icon.1";
1913             clip_to: "disclip";
1914             type: SWALLOW;
1915             scale: 1;
1916             description { state: "default" 0.0;
1917                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1918                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1919                fixed: 1 1;
1920                rel1 {
1921                   relative: 1.0 0.0;
1922                   to_x: "elm.padding.left";
1923                }
1924                rel2.to_x: "elm.padding.left";
1925                align: 0.0 0.5;
1926             }
1927             GENLIST_DESCRIPTION_FLIP_ENABLED
1928          }
1929          part { name: "elm.padding.icon1.right";
1930             clip_to: "disclip";
1931             type: RECT;
1932             scale: 1;
1933             description { state: "default" 0.0;
1934                min: GENLIST_PADDING_16_INC 0;
1935                fixed: 1 0;
1936                rel1 {
1937                   relative: 1.0 0.0;
1938                   to_x: "elm.icon.1";
1939                }
1940                rel2.to_x: "elm.icon.1";
1941                align: 0.0 0.5;
1942                visible: 0;
1943             }
1944          }
1945          part { name: "elm.icon.3";
1946             clip_to: "disclip";
1947             type: SWALLOW;
1948             scale: 1;
1949             description { state: "default" 0.0;
1950                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1951                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1952                fixed: 1 1;
1953                rel1.to_x: "elm.padding.right";
1954                rel2 {
1955                   relative: 0.0 1.0;
1956                   to_x: "elm.padding.right";
1957                }
1958                align: 1.0 0.5;
1959             }
1960             GENLIST_DESCRIPTION_FLIP_ENABLED
1961          }
1962          part { name: "elm.padding.icon3.left";
1963             clip_to: "disclip";
1964             type: RECT;
1965             scale: 1;
1966             description { state: "default" 0.0;
1967                min: GENLIST_PADDING_16_INC 0;
1968                fixed: 1 0;
1969                rel1 {
1970                   relative: 0.0 0.0;
1971                   to_x: "elm.icon.3";
1972                }
1973                rel2.to_x: "elm.icon.3";
1974                align: 1.0 0.0;
1975                visible: 0;
1976             }
1977          }
1978          part { name: "elm.icon.2";
1979             clip_to: "disclip";
1980             type: SWALLOW;
1981             scale: 1;
1982             description { state: "default" 0.0;
1983                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1984                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1985                fixed: 1 1;
1986                rel1.to_x: "elm.padding.icon3.left";
1987                rel2 {
1988                   relative: 0.0 1.0;
1989                   to_x: "elm.padding.icon3.left";
1990                }
1991                align: 1.0 0.5;
1992             }
1993             GENLIST_DESCRIPTION_FLIP_ENABLED
1994          }
1995          part { name: "elm.padding.icon2.left";
1996             clip_to: "disclip";
1997             type: RECT;
1998             scale: 1;
1999             description { state: "default" 0.0;
2000                min: GENLIST_PADDING_16_INC 0;
2001                fixed: 1 0;
2002                rel1 {
2003                   relative: 0.0 0.0;
2004                   to_x: "elm.icon.2";
2005                }
2006                rel2.to_x: "elm.icon.2";
2007                align: 0.0 0.5;
2008                visible: 0;
2009             }
2010          }
2011          part { name: "elm.text";
2012             clip_to: "disclip";
2013             type: TEXT;
2014             mouse_events: 0;
2015             scale: 1;
2016             description { state: "default" 0.0;
2017                rel1 {
2018                   relative: 1.0 0.0;
2019                   to_x: "elm.padding.icon1.right";
2020                }
2021                rel2 {
2022                   relative: 0.0 1.0;
2023                   to_x: "elm.padding.icon2.left";
2024                }
2025                align: 0.0 0.5;
2026                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
2027                text {
2028                   font: "SLP:style=Roman";
2029                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
2030                   min: 0 1;
2031                   align: 0.0 0.5;
2032                   text_class: "list_item";
2033                }
2034             }
2035             description { state: "selected" 0.0;
2036                inherit: "default" 0.0;
2037                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
2038             }
2039             GENLIST_DESCRIPTION_FLIP_ENABLED
2040          }
2041          GENLIST_PART_FLIP
2042          GENLIST_PART_DISCLIP
2043       }
2044       programs {
2045          program { name: "go_active";
2046             signal: "elm,state,selected";
2047             source: "elm";
2048             action: STATE_SET "selected" 0.0;
2049             target: "bg_image";
2050             target: "elm.text";
2051             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2052          }
2053          program { name: "go_passive";
2054             signal: "elm,state,unselected";
2055             source: "elm";
2056             action: STATE_SET "default" 0.0;
2057             target: "bg_image";
2058             target: "elm.text";
2059             transition: LINEAR 0.1;
2060          }
2061          program { name: "go_disabled";
2062             signal: "elm,state,disabled";
2063             source: "elm";
2064             action: STATE_SET "disabled" 0.0;
2065             target: "disclip";
2066          }
2067          program { name: "go_enabled";
2068             signal: "elm,state,enabled";
2069             source: "elm";
2070             action: STATE_SET "default" 0.0;
2071             target: "disclip";
2072          }
2073          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
2074          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2075       }
2076    }
2077
2078 // 3.1.26
2079    group { name: "elm/genlist/item/2text.4/default";
2080       alias: "elm/genlist/item_odd/2text.4/default";
2081       alias: "elm/genlist/item_compress/2text.4/default";
2082       alias: "elm/genlist/item_compress_odd/2text.4/default";
2083       data.item: "stacking" "above";
2084       data.item: "selectraise" "on";
2085       data.item: "texts" "elm.text.1 elm.text.2";
2086       data.item: "flips" "elm.flip.content";
2087       images {
2088          image: "00_list_bar_press_1x80.png" COMP;
2089       }
2090       parts {
2091          GENLIST_PART_BASE( GENLIST_HEIGHT_97_INC )
2092          GENLIST_PART_BG_IMAGE
2093          GENLIST_PART_BOTTOM_LINE
2094          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2095          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2096          part { name: "elm.text.2";
2097             clip_to: "disclip";
2098             type: TEXT;
2099             mouse_events: 0;
2100             scale: 1;
2101             description { state: "default" 0.0;
2102                min: GENLIST_SIZE_206_INC 0;
2103                fixed: 1 0;
2104                rel1.to_x: "elm.padding.right";
2105                rel2 {
2106                   relative: 0.0 1.0;
2107                   to_x: "elm.padding.right";
2108                }
2109                align: 1.0 0.5;
2110                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
2111                text {
2112                   font: "SLP:style=Medium";
2113                   size: GENLIST_FONT_32_INC;
2114                   min: 0 1;
2115                   align: 0.0 0.5;
2116                   text_class: "slp_medium";
2117                }
2118             }
2119             description { state: "selected" 0.0;
2120                inherit: "default" 0.0;
2121                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
2122             }
2123             GENLIST_DESCRIPTION_FLIP_ENABLED
2124          }
2125          part { name: "elm.padding.text2.left";
2126             type: RECT;
2127             mouse_events: 0;
2128             scale: 1;
2129             description { state: "default" 0.0;
2130                min: GENLIST_PADDING_16_INC 0;
2131                fixed: 1 0;
2132                rel1.to_x: "elm.text.2";
2133                rel2 {
2134                   relative: 0.0 1.0;
2135                   to_x: "elm.text.2";
2136                }
2137                align: 1.0 0.5;
2138                visible: 0;
2139             }
2140          }
2141          part { name: "vertical_line";
2142             type: RECT;
2143             mouse_events: 0;
2144             description { state: "default" 0.0;
2145                min: 1 0;
2146                fixed: 1 0;
2147                rel1.to_x: "elm.padding.text2.left";
2148                rel2 {
2149                   relative: 0.0 1.0;
2150                   to_x: "elm.padding.text2.left";
2151                }
2152                align: 1.0 0.5;
2153                color: GENLIST_PART_LIST_LINE_COLOR_INC;
2154             }
2155          }
2156          part { name: "elm.padding.text1.right";
2157             type: RECT;
2158             mouse_events: 0;
2159             scale: 1;
2160             description { state: "default" 0.0;
2161                min: GENLIST_PADDING_16_INC 0;
2162                fixed: 1 0;
2163                rel1.to_x: "vertical_line";
2164                rel2 {
2165                   relative: 0.0 1.0;
2166                   to_x: "vertical_line";
2167                }
2168                align: 1.0 0.5;
2169                visible: 0;
2170             }
2171          }
2172          part { name: "elm.text.1";
2173             clip_to: "disclip";
2174             type: TEXT;
2175             mouse_events: 0;
2176             scale: 1;
2177             description { state: "default" 0.0;
2178                rel1 {
2179                   relative: 1.0 0.0;
2180                   to_x: "elm.padding.left";
2181                }
2182                rel2 {
2183                   relative: 0.0  1.0;
2184                   to_x: "elm.padding.text1.right";
2185                }
2186                color: GENLIST_CONVERTOR_STYLE_COLOR;
2187                text {
2188                   font: "SLP:style=Roman";
2189                   size: GENLIST_CONVERTOR_STYLE_SIZE;
2190                   min: 0 1;
2191                   align: 1.0 0.5;
2192                   text_class: "list_item";
2193                }
2194             }
2195             description { state: "selected" 0.0;
2196                inherit: "default" 0.0;
2197                color: GENLIST_CONVERTOR_STYLE_FOCUS_COLOR;
2198             }
2199             GENLIST_DESCRIPTION_FLIP_ENABLED
2200          }
2201          GENLIST_PART_FLIP
2202          GENLIST_PART_DISCLIP
2203       }
2204       programs {
2205          // signal: elm,state,%s,active
2206          //   a "check" item named %s went active
2207          // signal: elm,state,%s,passive
2208          //   a "check" item named %s went passive
2209          // default is passive
2210          program { name: "go_active";
2211             signal: "elm,state,selected";
2212             source: "elm";
2213             action: STATE_SET "selected" 0.0;
2214             target: "bg_image";
2215             target: "elm.text.1";
2216             target: "elm.text.2";
2217             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2218          }
2219          program { name: "go_passive";
2220             signal: "elm,state,unselected";
2221             source: "elm";
2222             action: STATE_SET "default" 0.0;
2223             target: "bg_image";
2224             target: "elm.text.1";
2225             target: "elm.text.2";
2226             transition: LINEAR 0.1;
2227          }
2228          program { name: "go_disabled";
2229             signal: "elm,state,disabled";
2230             source: "elm";
2231             action: STATE_SET "disabled" 0.0;
2232             target: "disclip";
2233          }
2234          program { name: "go_enabled";
2235             signal: "elm,state,enabled";
2236             source: "elm";
2237             action: STATE_SET "default" 0.0;
2238             target: "disclip";
2239          }
2240          program { name: "flip_enabled";
2241             signal: "elm,state,flip,enabled";
2242             source: "elm";
2243             action: STATE_SET "flip_enabled" 0.0;
2244             target: "elm.text.1";
2245             target: "elm.flip.content";
2246          }
2247          program { name: "flip_disabled";
2248             signal: "elm,state,flip,disabled";
2249             source: "elm";
2250             action: STATE_SET "default" 0.0;
2251             target: "elm.text.1";
2252             target: "elm.flip.content";
2253          }
2254          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2255       }
2256    }
2257
2258 // 3.1.27
2259    group { name: "elm/genlist/item/2text.5/default";
2260       alias: "elm/genlist/item_odd/2text.5/default";
2261       alias: "elm/genlist/item_compress/2text.5/default";
2262       alias: "elm/genlist/item_compress_odd/2text.5/default";
2263       data.item: "stacking" "above";
2264       data.item: "selectraise" "on";
2265       data.item: "texts" "elm.text.1 elm.text.2";
2266       data.item: "flips" "elm.flip.content";
2267       images {
2268          image: "00_list_bar_press_1x80.png" COMP;
2269       }
2270       parts {
2271          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
2272          GENLIST_PART_BG_IMAGE
2273          GENLIST_PART_BOTTOM_LINE
2274          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2275          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2276          part { name: "elm.text.1";
2277             clip_to: "disclip";
2278             type: TEXT;
2279             mouse_events: 0;
2280             scale: 1;
2281             description { state: "default" 0.0;
2282                min: GENLIST_SIZE_133_INC 0;
2283                fixed: 1 0;
2284                rel1 {
2285                   relative: 1.0 0.0;
2286                   to_x: "elm.padding.left";
2287                }
2288                rel2.to_x: "elm.padding.left";
2289                align: 0.0 0.5;
2290                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
2291                text {
2292                   font: "SLP:style=Medium";
2293                   size: GENLIST_FONT_32_INC;
2294                   min: 0 1;
2295                   align: 0.0 0.5;
2296                   text_class: "slp_medium";
2297                }
2298             }
2299             description { state: "selected" 0.0;
2300                inherit: "default" 0.0;
2301                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
2302             }
2303          }
2304          part { name: "elm.padding.text1.right";
2305             type: RECT;
2306             mouse_events: 0;
2307             scale: 1;
2308             description { state: "default" 0.0;
2309                min: GENLIST_PADDING_16_INC 0;
2310                fixed: 1 0;
2311                rel1 {
2312                    relative: 1.0 0.0;
2313                    to_x: "elm.text.1";
2314                }
2315                rel2.to_x: "elm.text.1";
2316                align: 0.0 0.5;
2317                visible: 0;
2318             }
2319          }
2320          part { name: "vertical_line";
2321             type: RECT;
2322             mouse_events: 0;
2323             description { state: "default" 0.0;
2324                min: 1 0;
2325                fixed: 1 0;
2326                rel1.to_x: "elm.padding.text1.right";
2327                rel2 {
2328                   relative: 0.0 1.0;
2329                   to_x: "elm.padding.text1.right";
2330                }
2331                align: 0.0 0.5;
2332                color: GENLIST_PART_LIST_LINE_COLOR_INC;
2333             }
2334          }
2335          part { name: "elm.padding.text2.left";
2336             type: RECT;
2337             mouse_events: 0;
2338             scale: 1;
2339             description { state: "default" 0.0;
2340                min: GENLIST_PADDING_16_INC 0;
2341                fixed: 1 0;
2342                rel1 {
2343                    relative: 1.0 0.0;
2344                    to_x: "vertical_line";
2345                }
2346                rel2.to_x: "vertical_line";
2347                align: 0.0 0.5;
2348                visible: 0;
2349             }
2350          }
2351          part { name: "elm.text.2";
2352             clip_to: "disclip";
2353             type: TEXT;
2354             mouse_events: 0;
2355             scale: 1;
2356             description { state: "default" 0.0;
2357                rel1 {
2358                   relative: 1.0 0.0;
2359                   to_x: "elm.padding.text2.left";
2360                }
2361                rel2 {
2362                   relative: 0.0  1.0;
2363                   to_x: "elm.padding.right";
2364                }
2365                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
2366                text {
2367                   font: "SLP:style=Roman";
2368                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
2369                   min: 0 1;
2370                   align: 0.0 0.5;
2371                   text_class: "list_item";
2372                }
2373             }
2374             description { state: "selected" 0.0;
2375                inherit: "default" 0.0;
2376                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
2377             }
2378             GENLIST_DESCRIPTION_FLIP_ENABLED
2379          }
2380          GENLIST_PART_FLIP
2381          GENLIST_PART_DISCLIP
2382       }
2383       programs {
2384          // signal: elm,state,%s,active
2385          //   a "check" item named %s went active
2386          // signal: elm,state,%s,passive
2387          //   a "check" item named %s went passive
2388          // default is passive
2389          program { name: "go_active";
2390             signal: "elm,state,selected";
2391             source: "elm";
2392             action: STATE_SET "selected" 0.0;
2393             target: "bg_image";
2394             target: "elm.text.1";
2395             target: "elm.text.2";
2396             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2397          }
2398          program { name: "go_passive";
2399             signal: "elm,state,unselected";
2400             source: "elm";
2401             action: STATE_SET "default" 0.0;
2402             target: "bg_image";
2403             target: "elm.text.1";
2404             target: "elm.text.2";
2405             transition: LINEAR 0.1;
2406          }
2407          program { name: "go_disabled";
2408             signal: "elm,state,disabled";
2409             source: "elm";
2410             action: STATE_SET "disabled" 0.0;
2411             target: "disclip";
2412          }
2413          program { name: "go_enabled";
2414             signal: "elm,state,enabled";
2415             source: "elm";
2416             action: STATE_SET "default" 0.0;
2417             target: "disclip";
2418          }
2419          program { name: "flip_enabled";
2420             signal: "elm,state,flip,enabled";
2421             source: "elm";
2422             action: STATE_SET "flip_enabled" 0.0;
2423             target: "elm.text.2";
2424             target: "elm.flip.content";
2425          }
2426          program { name: "flip_disabled";
2427             signal: "elm,state,flip,disabled";
2428             source: "elm";
2429             action: STATE_SET "default" 0.0;
2430             target: "elm.text.2";
2431             target: "elm.flip.content";
2432          }
2433          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2434       }
2435    }
2436
2437 // 3.2.1
2438    group { name: "elm/genlist/item/2text.2/default";
2439       alias: "elm/genlist/item_odd/2text.2/default";
2440       alias: "elm/genlist/item_compress/2text.2/default";
2441       alias: "elm/genlist/item_compress_odd/2text.2/default";
2442       data.item: "stacking" "above";
2443       data.item: "selectraise" "on";
2444       data.item: "texts" "elm.text.1 elm.text.2";
2445       data.item: "flips" "elm.flip.content";
2446       images {
2447          image: "00_list_bar_press_1x80.png" COMP;
2448       }
2449       parts {
2450          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2451          GENLIST_PART_BG_IMAGE
2452          GENLIST_PART_BOTTOM_LINE
2453          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2454          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2455          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2456          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2457          part { name: "elm.text.1";
2458             clip_to: "disclip";
2459             type: TEXT;
2460             mouse_events: 0;
2461             scale: 1;
2462             description { state: "default" 0.0;
2463                min: 0 GENLIST_SIZE_61_INC;
2464                fixed: 0 1;
2465                rel1 {
2466                   relative: 1.0 1.0;
2467                   to_x: "elm.padding.left";
2468                   to_y: "elm.padding.top";
2469                }
2470                rel2 {
2471                   relative: 0.0 1.0;
2472                   to_x: "elm.padding.right";
2473                   to_y: "elm.padding.top";
2474                }
2475                align: 0.0 0.0;
2476                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
2477                text {
2478                   font: "SLP:style=Roman";
2479                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
2480                   min: 0 1;
2481                   align: 0.0 0.5;
2482                   text_class: "list_item";
2483                }
2484             }
2485             description { state: "selected" 0.0;
2486                inherit: "default" 0.0;
2487                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
2488             }
2489             GENLIST_DESCRIPTION_FLIP_ENABLED
2490          }
2491          part { name: "elm.text.2";
2492             clip_to: "disclip";
2493             type: TEXT;
2494             mouse_events: 0;
2495             scale: 1;
2496             description { state: "default" 0.0;
2497                rel1 {
2498                   relative: 1.0 1.0;
2499                   to_x: "elm.padding.left";
2500                   to_y: "elm.text.1";
2501                }
2502                rel2 {
2503                   relative: 0.0 0.0;
2504                   to_x: "elm.padding.right";
2505                   to_y: "elm.padding.bottom";
2506                }
2507                align: 0.0 0.0;
2508                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
2509                text {
2510                   font: "SLP:style=Medium";
2511                   size: GENLIST_FONT_32_INC;
2512                   min: 0 1;
2513                   align: 0.0 0.5;
2514                   text_class: "slp_medium";
2515                }
2516             }
2517             description { state: "selected" 0.0;
2518                inherit: "default" 0.0;
2519                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
2520             }
2521             GENLIST_DESCRIPTION_FLIP_ENABLED
2522          }
2523          GENLIST_PART_FLIP
2524          GENLIST_PART_DISCLIP
2525       }
2526       programs {
2527          // signal: elm,state,%s,active
2528          //   a "check" item named %s went active
2529          // signal: elm,state,%s,passive
2530          //   a "check" item named %s went passive
2531          // default is passive
2532          program { name: "go_active";
2533             signal: "elm,state,selected";
2534             source: "elm";
2535             action: STATE_SET "selected" 0.0;
2536             target: "bg_image";
2537             target: "elm.text.1";
2538             target: "elm.text.2";
2539             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2540          }
2541          program { name: "go_passive";
2542             signal: "elm,state,unselected";
2543             source: "elm";
2544             action: STATE_SET "default" 0.0;
2545             target: "bg_image";
2546             target: "elm.text.1";
2547             target: "elm.text.2";
2548             transition: LINEAR 0.1;
2549          }
2550          program { name: "go_disabled";
2551             signal: "elm,state,disabled";
2552             source: "elm";
2553             action: STATE_SET "disabled" 0.0;
2554             target: "disclip";
2555          }
2556          program { name: "go_enabled";
2557             signal: "elm,state,enabled";
2558             source: "elm";
2559             action: STATE_SET "default" 0.0;
2560             target: "disclip";
2561          }
2562          GENLIST_PROGRAM_FLIP_2TEXT
2563          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2564       }
2565    }
2566
2567    group { name: "elm/genlist/item_compress/2text.2.tb/default";
2568       inherit: "elm/genlist/item/2text.2/default";
2569       parts {
2570          part { name: "elm.text.2";
2571             clip_to: "disclip";
2572             type: TEXTBLOCK;
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.5;
2587                text {
2588                   style: "genlist_style_list_sub_text_default";
2589                   min: 0 1;
2590                   align: 0.0 0.5;
2591                }
2592             }
2593             description { state: "selected" 0.0;
2594                inherit: "default" 0.0;
2595                text.style: "genlist_style_list_sub_text_focus";
2596             }
2597             GENLIST_DESCRIPTION_FLIP_ENABLED
2598          }
2599       }
2600    }
2601
2602 //
2603    group { name: "elm/genlist/item/2text.8/default";
2604       alias: "elm/genlist/item_odd/2text.8/default";
2605       alias: "elm/genlist/item_compress/2text.8/default";
2606       alias: "elm/genlist/item_compress_odd/2text.8/default";
2607       data.item: "stacking" "above";
2608       data.item: "selectraise" "on";
2609       data.item: "texts" "elm.text.1 elm.text.2";
2610       data.item: "flips" "elm.flip.content";
2611       images {
2612          image: "00_list_bar_press_1x80.png" COMP;
2613       }
2614       parts {
2615          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2616          GENLIST_PART_BG_IMAGE
2617          GENLIST_PART_BOTTOM_LINE
2618          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2619          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2620          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2621          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2622          part { name: "elm.text.1";
2623             clip_to: "disclip";
2624             type: TEXTBLOCK;
2625             mouse_events: 0;
2626             scale: 1;
2627             description { state: "default" 0.0;
2628                min: 0 GENLIST_SIZE_61_INC;
2629                fixed: 1 1;
2630                rel1 {
2631                   relative: 1.0 1.0;
2632                   to_x: "elm.padding.left";
2633                   to_y: "elm.padding.top";
2634                }
2635                rel2 {
2636                   relative: 0.0 1.0;
2637                   to_x: "elm.padding.right";
2638                   to_y: "elm.padding.top";
2639                }
2640                align: 0.0 0.0;
2641                text {
2642                   style: "genlist_style_list_main_text_unread";
2643                   min: 0 1;
2644                   align: 0.0 0.5;
2645                }
2646             }
2647             description { state: "selected" 0.0;
2648                inherit: "default" 0.0;
2649                text.style: "genlist_style_list_main_text_focus";
2650             }
2651             GENLIST_DESCRIPTION_FLIP_ENABLED
2652          }
2653          part { name: "elm.text.2";
2654             clip_to: "disclip";
2655             type: TEXTBLOCK;
2656             mouse_events: 0;
2657             scale: 1;
2658             description { state: "default" 0.0;
2659                fixed: 1 0;
2660                rel1 {
2661                   relative: 1.0 1.0;
2662                   to_x: "elm.padding.left";
2663                   to_y: "elm.text.1";
2664                }
2665                rel2 {
2666                   relative: 0.0 0.0;
2667                   to_x: "elm.padding.right";
2668                   to_y: "elm.padding.bottom";
2669                }
2670                align: 0.0 0.0;
2671                text {
2672                   style: "genlist_style_list_sub_text_default";
2673                   min: 0 1;
2674                   align: 0.0 0.5;
2675                }
2676             }
2677             description { state: "selected" 0.0;
2678                inherit: "default" 0.0;
2679                text.style: "genlist_style_list_sub_text_focus";
2680             }
2681             GENLIST_DESCRIPTION_FLIP_ENABLED
2682          }
2683          GENLIST_PART_FLIP
2684          GENLIST_PART_DISCLIP
2685       }
2686       programs {
2687          // signal: elm,state,%s,active
2688          //   a "check" item named %s went active
2689          // signal: elm,state,%s,passive
2690          //   a "check" item named %s went passive
2691          // default is passive
2692          program { name: "go_active";
2693             signal: "elm,state,selected";
2694             source: "elm";
2695             action: STATE_SET "selected" 0.0;
2696             target: "bg_image";
2697             target: "elm.text.1";
2698             target: "elm.text.2";
2699             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2700          }
2701          program { name: "go_passive";
2702             signal: "elm,state,unselected";
2703             source: "elm";
2704             action: STATE_SET "default" 0.0;
2705             target: "bg_image";
2706             target: "elm.text.1";
2707             target: "elm.text.2";
2708             transition: LINEAR 0.1;
2709          }
2710          program { name: "go_disabled";
2711             signal: "elm,state,disabled";
2712             source: "elm";
2713             action: STATE_SET "disabled" 0.0;
2714             target: "disclip";
2715          }
2716          program { name: "go_enabled";
2717             signal: "elm,state,enabled";
2718             source: "elm";
2719             action: STATE_SET "default" 0.0;
2720             target: "disclip";
2721          }
2722          GENLIST_PROGRAM_FLIP_2TEXT
2723          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2724       }
2725    }
2726
2727 // 3.2.2
2728    group { name: "elm/genlist/item/2text.3/default";
2729       alias: "elm/genlist/item_odd/2text.3/default";
2730       alias: "elm/genlist/item_compress/2text.3/default";
2731       alias: "elm/genlist/item_compress_odd/2text.3/default";
2732       data.item: "stacking" "above";
2733       data.item: "selectraise" "on";
2734       data.item: "texts" "elm.text.1 elm.text.2";
2735       data.item: "flips" "elm.flip.content";
2736       images {
2737          image: "00_list_bar_press_1x80.png" COMP;
2738       }
2739       parts {
2740          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2741          GENLIST_PART_BG_IMAGE
2742          GENLIST_PART_BOTTOM_LINE
2743          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2744          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2745          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2746          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2747          part { name: "elm.text.1";
2748             clip_to: "disclip";
2749             type: TEXT;
2750             mouse_events: 0;
2751             scale: 1;
2752             description { state: "default" 0.0;
2753                min: 0 GENLIST_SIZE_61_INC;
2754                fixed: 0 1;
2755                rel1 {
2756                   relative: 1.0 0.0;
2757                   to_x: "elm.padding.left";
2758                   to_y: "elm.padding.bottom";
2759                }
2760                rel2 {
2761                   relative: 0.0 0.0;
2762                   to_x: "elm.padding.right";
2763                   to_y: "elm.padding.bottom";
2764                }
2765                align: 0.0 1.0;
2766                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
2767                text {
2768                   font: "SLP:style=Roman";
2769                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
2770                   min: 0 1;
2771                   align: 0.0 0.5;
2772                   text_class: "slp_roman";
2773                }
2774             }
2775             description { state: "selected" 0.0;
2776                inherit: "default" 0.0;
2777                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
2778             }
2779             GENLIST_DESCRIPTION_FLIP_ENABLED
2780          }
2781          part { name: "elm.text.2";
2782             clip_to: "disclip";
2783             type: TEXT;
2784             mouse_events: 0;
2785             scale: 1;
2786             description { state: "default" 0.0;
2787                rel1 {
2788                   relative: 1.0 1.0;
2789                   to_x: "elm.padding.left";
2790                   to_y: "elm.padding.top";
2791                }
2792                rel2 {
2793                   relative: 0.0 0.0;
2794                   to_x: "elm.padding.right";
2795                   to_y: "elm.text.1";
2796                }
2797                align: 0.0 1.0;
2798                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
2799                text {
2800                   font: "SLP:style=Medium";
2801                   size: GENLIST_FONT_32_INC;
2802                   min: 0 1;
2803                   align: 0.0 0.5;
2804                   text_class: "list_item";
2805                }
2806             }
2807             description { state: "selected" 0.0;
2808                inherit: "default" 0.0;
2809                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
2810             }
2811             GENLIST_DESCRIPTION_FLIP_ENABLED
2812          }
2813          GENLIST_PART_FLIP
2814          GENLIST_PART_DISCLIP
2815       }
2816       programs {
2817          // signal: elm,state,%s,active
2818          //   a "check" item named %s went active
2819          // signal: elm,state,%s,passive
2820          //   a "check" item named %s went passive
2821          // default is passive
2822          program { name: "go_active";
2823             signal: "elm,state,selected";
2824             source: "elm";
2825             action: STATE_SET "selected" 0.0;
2826             target: "bg_image";
2827             target: "elm.text.1";
2828             target: "elm.text.2";
2829             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2830          }
2831          program { name: "go_passive";
2832             signal: "elm,state,unselected";
2833             source: "elm";
2834             action: STATE_SET "default" 0.0;
2835             target: "bg_image";
2836             target: "elm.text.1";
2837             target: "elm.text.2";
2838             transition: LINEAR 0.1;
2839          }
2840          program { name: "go_disabled";
2841             signal: "elm,state,disabled";
2842             source: "elm";
2843             action: STATE_SET "disabled" 0.0;
2844             target: "disclip";
2845          }
2846          program { name: "go_enabled";
2847             signal: "elm,state,enabled";
2848             source: "elm";
2849             action: STATE_SET "default" 0.0;
2850             target: "disclip";
2851          }
2852          GENLIST_PROGRAM_FLIP_2TEXT
2853          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2854       }
2855    }
2856
2857 // 3.2.3
2858    group { name: "elm/genlist/item/3text/default";
2859       alias: "elm/genlist/item_odd/3text/default";
2860       alias: "elm/genlist/item_compress/3text/default";
2861       alias: "elm/genlist/item_compress_odd/3text/default";
2862       data.item: "stacking" "above";
2863       data.item: "selectraise" "on";
2864       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
2865       data.item: "flips" "elm.flip.content";
2866       images {
2867          image: "00_list_bar_press_1x80.png" COMP;
2868       }
2869       parts {
2870          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2871          GENLIST_PART_BG_IMAGE
2872          GENLIST_PART_BOTTOM_LINE
2873          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2874          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2875          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2876          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2877          part { name: "elm.text.3";
2878             clip_to: "disclip";
2879             type: TEXT;
2880             mouse_events: 0;
2881             scale: 1;
2882             description { state: "default" 0.0;
2883                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
2884                fixed: 1 1;
2885                rel1 {
2886                   relative: 0.0 1.0;
2887                   to_x: "elm.padding.right";
2888                   to_y: "elm.padding.top";
2889                }
2890                rel2 {
2891                   relative: 0.0 1.0;
2892                   to_x: "elm.padding.right";
2893                   to_y: "elm.padding.top";
2894                }
2895                align: 1.0 0.0;
2896                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
2897                text {
2898                   font: "SLP:style=Medium";
2899                   size: GENLIST_FONT_32_INC;
2900                   min: 0 1;
2901                   align: 1.0 0.5;
2902                   text_class: "slp_medium";
2903                }
2904             }
2905             description { state: "selected" 0.0;
2906                inherit: "default" 0.0;
2907                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
2908             }
2909             GENLIST_DESCRIPTION_FLIP_ENABLED
2910          }
2911          part { name: "elm.padding.text3.left";
2912             clip_to: "disclip";
2913             type: RECT;
2914             mouse_events: 0;
2915             scale: 1;
2916             description { state: "default" 0.0;
2917                min: GENLIST_ICON_SMALL_SIZE 0;
2918                fixed: 1 0;
2919                rel1.to_x: "elm.text.3";
2920                rel2 {
2921                   relative: 0.0 1.0;
2922                   to_x: "elm.text.3";
2923                }
2924                align: 1.0 0.5;
2925                visible: 0;
2926             }
2927          }
2928          part { name: "elm.text.1";
2929             clip_to: "disclip";
2930             type: TEXT;
2931             mouse_events: 0;
2932             scale: 1;
2933             description { state: "default" 0.0;
2934                rel1 {
2935                   relative: 1.0 1.0;
2936                   to_x: "elm.padding.left";
2937                   to_y: "elm.padding.top";
2938                }
2939                rel2 {
2940                   relative: 0.0 1.0;
2941                   to_x: "elm.padding.text3.left";
2942                   to_y: "elm.text.3";
2943                }
2944                align: 0.0 0.5;
2945                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
2946                text {
2947                   font: "SLP:style=Roman";
2948                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
2949                   min: 0 1;
2950                   align: 0.0 0.5;
2951                   text_class: "list_item";
2952                }
2953             }
2954             description { state: "selected" 0.0;
2955                inherit: "default" 0.0;
2956                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
2957             }
2958             GENLIST_DESCRIPTION_FLIP_ENABLED
2959          }
2960          part { name: "elm.text.2";
2961             clip_to: "disclip";
2962             type: TEXT;
2963             mouse_events: 0;
2964             scale: 1;
2965             description { state: "default" 0.0;
2966                rel1 {
2967                   relative: 1.0 1.0;
2968                   to_x: "elm.padding.left";
2969                   to_y: "elm.text.1";
2970                }
2971                rel2 {
2972                   relative: 0.0 0.0;
2973                   to_x: "elm.padding.right";
2974                   to_y: "elm.padding.bottom";
2975                }
2976                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
2977                text {
2978                   font: "SLP:style=Medium";
2979                   size: GENLIST_FONT_32_INC;
2980                   min: 0 1;
2981                   align: 0.0 0.5;
2982                   text_class: "slp_medium";
2983                }
2984             }
2985             description { state: "selected" 0.0;
2986                inherit: "default" 0.0;
2987                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
2988             }
2989             GENLIST_DESCRIPTION_FLIP_ENABLED
2990          }
2991          GENLIST_PART_FLIP
2992          GENLIST_PART_DISCLIP
2993       }
2994       programs {
2995          // signal: elm,state,%s,active
2996          //   a "check" item named %s went active
2997          // signal: elm,state,%s,passive
2998          //   a "check" item named %s went passive
2999          // default is passive
3000          program { name: "go_active";
3001             signal: "elm,state,selected";
3002             source: "elm";
3003             action: STATE_SET "selected" 0.0;
3004             target: "bg_image";
3005             target: "elm.text.1";
3006             target: "elm.text.2";
3007             target: "elm.text.3";
3008             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3009          }
3010          program { name: "go_passive";
3011             signal: "elm,state,unselected";
3012             source: "elm";
3013             action: STATE_SET "default" 0.0;
3014             target: "bg_image";
3015             target: "elm.text.1";
3016             target: "elm.text.2";
3017             target: "elm.text.3";
3018             transition: LINEAR 0.1;
3019          }
3020          program { name: "go_disabled";
3021             signal: "elm,state,disabled";
3022             source: "elm";
3023             action: STATE_SET "disabled" 0.0;
3024             target: "disclip";
3025          }
3026          program { name: "go_enabled";
3027             signal: "elm,state,enabled";
3028             source: "elm";
3029             action: STATE_SET "default" 0.0;
3030             target: "disclip";
3031          }
3032          GENLIST_PROGRAM_FLIP_3TEXT
3033          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3034       }
3035    }
3036
3037    group { name: "elm/genlist/item_compress/3text.tb/default";
3038       inherit: "elm/genlist/item/3text/default";
3039       parts {
3040          part { name: "elm.text.2";
3041             clip_to: "disclip";
3042             type: TEXTBLOCK;
3043             mouse_events: 0;
3044             scale: 1;
3045             description { state: "default" 0.0;
3046                rel1 {
3047                   relative: 1.0 1.0;
3048                   to_x: "elm.padding.left";
3049                   to_y: "elm.text.1";
3050                }
3051                rel2 {
3052                   relative: 0.0 0.0;
3053                   to_x: "elm.padding.right";
3054                   to_y: "elm.padding.bottom";
3055                }
3056                align: 0.0 0.5;
3057                text {
3058                   style: "genlist_style_list_main_text_unread";
3059                   min: 0 1;
3060                   align: 0.0 0.5;
3061                }
3062             }
3063             description { state: "selected" 0.0;
3064                inherit: "default" 0.0;
3065                text.style: "genlist_style_list_main_text_focus";
3066             }
3067             GENLIST_DESCRIPTION_FLIP_ENABLED
3068          }
3069       }
3070    }
3071
3072 // 3.2.4
3073    group { name: "elm/genlist/item/2text.1icon.2/default";
3074       alias: "elm/genlist/item_odd/2text.1icon.2/default";
3075       alias: "elm/genlist/item_compress/2text.1icon.2/default";
3076       alias: "elm/genlist/item_compress_odd/2text.1icon.2/default";
3077       data.item: "stacking" "above";
3078       data.item: "selectraise" "on";
3079       data.item: "texts" "elm.text.1 elm.text.2";
3080       data.item: "contents" "elm.icon";
3081       data.item: "flips" "elm.flip.content";
3082       images {
3083          image: "00_list_bar_press_1x80.png" COMP;
3084       }
3085       parts {
3086          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3087          GENLIST_PART_BG_IMAGE
3088          GENLIST_PART_BOTTOM_LINE
3089          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3090          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3091          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3092          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3093          part { name: "elm.icon";
3094             clip_to: "disclip";
3095             type: SWALLOW;
3096             scale: 1;
3097             description { state: "default" 0.0;
3098                fixed: 1 1;
3099                rel1 {
3100                   relative: 0.0 1.0;
3101                   to_x: "elm.padding.right";
3102                   to_y: "elm.padding.top";
3103                }
3104                rel2 {
3105                   relative: 0.0 0.0;
3106                   to_x: "elm.padding.right";
3107                   to_y: "elm.padding.bottom";
3108                }
3109                align: 1.0 0.5;
3110             }
3111             GENLIST_DESCRIPTION_FLIP_ENABLED
3112          }
3113          part { name: "elm.padding.icon.left";
3114             clip_to: "disclip";
3115             type: RECT;
3116             scale: 1;
3117             description { state: "default" 0.0;
3118                min: GENLIST_PADDING_16_INC 0;
3119                fixed: 1 0;
3120                rel1.to_x: "elm.icon";
3121                rel2 {
3122                   relative: 0.0 1.0;
3123                   to_x: "elm.icon";
3124                }
3125                align: 1.0 0.0;
3126                visible: 0;
3127             }
3128          }
3129          part { name: "elm.text.1";
3130             clip_to: "disclip";
3131             type: TEXT;
3132             mouse_events: 0;
3133             scale: 1;
3134             description { state: "default" 0.0;
3135                min: 0 GENLIST_SIZE_61_INC;
3136                fixed: 0 1;
3137                rel1 {
3138                   relative: 1.0 1.0;
3139                   to_x: "elm.padding.left";
3140                   to_y: "elm.padding.top";
3141                }
3142                rel2 {
3143                   relative: 0.0 1.0;
3144                   to_x: "elm.padding.icon.left";
3145                   to_y: "elm.padding.top";
3146                }
3147                align: 0.0 0.0;
3148                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
3149                text {
3150                   font: "SLP:style=Roman";
3151                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
3152                   min: 0 1;
3153                   align: 0.0 0.5;
3154                   text_class: "list_item";
3155                }
3156             }
3157             description { state: "selected" 0.0;
3158                inherit: "default" 0.0;
3159                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
3160             }
3161             GENLIST_DESCRIPTION_FLIP_ENABLED
3162          }
3163          part { name: "elm.text.2";
3164             clip_to: "disclip";
3165             type: TEXT;
3166             mouse_events: 0;
3167             scale: 1;
3168             description { state: "default" 0.0;
3169                rel1 {
3170                   relative: 1.0 1.0;
3171                   to_x: "elm.padding.left";
3172                   to_y: "elm.text.1";
3173                }
3174                rel2 {
3175                   relative: 0.0 0.0;
3176                   to_x: "elm.padding.icon.left";
3177                   to_y: "elm.padding.bottom";
3178                }
3179                align: 0.0 0.0;
3180                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
3181                text {
3182                   font: "SLP:style=Medium";
3183                   size: GENLIST_FONT_32_INC;
3184                   min: 0 1;
3185                   align: 0.0 0.5;
3186                   text_class: "slp_medium";
3187                }
3188             }
3189             description { state: "selected" 0.0;
3190                inherit: "default" 0.0;
3191                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
3192             }
3193             GENLIST_DESCRIPTION_FLIP_ENABLED
3194          }
3195          GENLIST_PART_FLIP
3196          GENLIST_PART_DISCLIP
3197       }
3198       programs {
3199          // signal: elm,state,%s,active
3200          //   a "check" item named %s went active
3201          // signal: elm,state,%s,passive
3202          //   a "check" item named %s went passive
3203          // default is passive
3204          program { name: "go_active";
3205             signal: "elm,state,selected";
3206             source: "elm";
3207             action: STATE_SET "selected" 0.0;
3208             target: "bg_image";
3209             target: "elm.text.1";
3210             target: "elm.text.2";
3211             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3212          }
3213          program { name: "go_passive";
3214             signal: "elm,state,unselected";
3215             source: "elm";
3216             action: STATE_SET "default" 0.0;
3217             target: "bg_image";
3218             target: "elm.text.1";
3219             target: "elm.text.2";
3220             transition: LINEAR 0.1;
3221          }
3222          program { name: "go_disabled";
3223             signal: "elm,state,disabled";
3224             source: "elm";
3225             action: STATE_SET "disabled" 0.0;
3226             target: "disclip";
3227          }
3228          program { name: "go_enabled";
3229             signal: "elm,state,enabled";
3230             source: "elm";
3231             action: STATE_SET "default" 0.0;
3232             target: "disclip";
3233          }
3234          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
3235          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3236       }
3237    }
3238
3239 // 3.2.5
3240    group { name: "elm/genlist/item/2text.1icon.10/default";
3241       alias: "elm/genlist/item_odd/2text.1icon.10/default";
3242       alias: "elm/genlist/item_compress/2text.1icon.10/default";
3243       alias: "elm/genlist/item_compress_odd/2text.1icon.10/default";
3244       data.item: "stacking" "above";
3245       data.item: "selectraise" "on";
3246       data.item: "texts" "elm.text.1 elm.text.2";
3247       data.item: "contents" "elm.icon";
3248       data.item: "flips" "elm.flip.content";
3249       images {
3250          image: "00_list_bar_press_1x80.png" COMP;
3251       }
3252       parts {
3253          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3254          GENLIST_PART_BG_IMAGE
3255          GENLIST_PART_BOTTOM_LINE
3256          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3257          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3258          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3259          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3260          part { name: "elm.icon";
3261             clip_to: "disclip";
3262             type: SWALLOW;
3263             scale: 1;
3264             description { state: "default" 0.0;
3265                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
3266                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
3267                fixed: 1 1;
3268                rel1 {
3269                   relative: 0.0 1.0;
3270                   to_x: "elm.padding.right";
3271                   to_y: "elm.padding.top";
3272                }
3273                rel2 {
3274                   relative: 0.0 0.0;
3275                   to_x: "elm.padding.right";
3276                   to_y: "elm.padding.bottom";
3277                }
3278                align: 1.0 0.5;
3279             }
3280             GENLIST_DESCRIPTION_FLIP_ENABLED
3281          }
3282          part { name: "elm.padding.icon.left";
3283             clip_to: "disclip";
3284             type: RECT;
3285             scale: 1;
3286             description { state: "default" 0.0;
3287                min: GENLIST_PADDING_16_INC 0;
3288                fixed: 1 0;
3289                rel1.to_x: "elm.icon";
3290                rel2 {
3291                   relative: 0.0 1.0;
3292                   to_x: "elm.icon";
3293                }
3294                align: 1.0 0.0;
3295                visible: 0;
3296             }
3297          }
3298          part { name: "elm.text.1";
3299             clip_to: "disclip";
3300             type: TEXT;
3301             mouse_events: 0;
3302             scale: 1;
3303             description { state: "default" 0.0;
3304                min: 0 GENLIST_SIZE_61_INC;
3305                fixed: 0 1;
3306                rel1 {
3307                   relative: 1.0 1.0;
3308                   to_x: "elm.padding.left";
3309                   to_y: "elm.padding.top";
3310                }
3311                rel2 {
3312                   relative: 0.0 1.0;
3313                   to_x: "elm.padding.icon.left";
3314                   to_y: "elm.padding.top";
3315                }
3316                align: 0.0 0.0;
3317                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
3318                text {
3319                   font: "SLP:style=Roman";
3320                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
3321                   min: 0 1;
3322                   align: 0.0 0.5;
3323                   text_class: "list_item";
3324                }
3325             }
3326             description { state: "selected" 0.0;
3327                inherit: "default" 0.0;
3328                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
3329             }
3330             GENLIST_DESCRIPTION_FLIP_ENABLED
3331          }
3332          part { name: "elm.text.2";
3333             clip_to: "disclip";
3334             type: TEXT;
3335             mouse_events: 0;
3336             scale: 1;
3337             description { state: "default" 0.0;
3338                rel1 {
3339                   relative: 1.0 1.0;
3340                   to_x: "elm.padding.left";
3341                   to_y: "elm.text.1";
3342                }
3343                rel2 {
3344                   relative: 0.0 0.0;
3345                   to_x: "elm.padding.icon.left";
3346                   to_y: "elm.padding.bottom";
3347                }
3348                align: 0.0 0.0;
3349                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
3350                text {
3351                   font: "SLP:style=Medium";
3352                   size: GENLIST_FONT_32_INC;
3353                   min: 0 1;
3354                   align: 0.0 0.5;
3355                   text_class: "slp_medium";
3356                }
3357             }
3358             description { state: "selected" 0.0;
3359                inherit: "default" 0.0;
3360                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
3361             }
3362             GENLIST_DESCRIPTION_FLIP_ENABLED
3363          }
3364          GENLIST_PART_FLIP
3365          GENLIST_PART_DISCLIP
3366       }
3367       programs {
3368          // signal: elm,state,%s,active
3369          //   a "check" item named %s went active
3370          // signal: elm,state,%s,passive
3371          //   a "check" item named %s went passive
3372          // default is passive
3373          program { name: "go_active";
3374             signal: "elm,state,selected";
3375             source: "elm";
3376             action: STATE_SET "selected" 0.0;
3377             target: "bg_image";
3378             target: "elm.text.1";
3379             target: "elm.text.2";
3380             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3381          }
3382          program { name: "go_passive";
3383             signal: "elm,state,unselected";
3384             source: "elm";
3385             action: STATE_SET "default" 0.0;
3386             target: "bg_image";
3387             target: "elm.text.1";
3388             target: "elm.text.2";
3389             transition: LINEAR 0.1;
3390          }
3391          program { name: "go_disabled";
3392             signal: "elm,state,disabled";
3393             source: "elm";
3394             action: STATE_SET "disabled" 0.0;
3395             target: "disclip";
3396          }
3397          program { name: "go_enabled";
3398             signal: "elm,state,enabled";
3399             source: "elm";
3400             action: STATE_SET "default" 0.0;
3401             target: "disclip";
3402          }
3403          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
3404          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3405       }
3406    }
3407
3408    group { name: "elm/genlist/item_compress/2text.1icon.10.tb/default";
3409       inherit: "elm/genlist/item/2text.1icon.10/default";
3410       parts {
3411          part { name: "elm.text.2";
3412             clip_to: "disclip";
3413             type: TEXTBLOCK;
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.5;
3428                text {
3429                   style: "genlist_style_list_sub_text_default";
3430                   min: 0 1;
3431                   align: 0.0 0.5;
3432                }
3433             }
3434             description { state: "selected" 0.0;
3435                inherit: "default" 0.0;
3436                text.style: "genlist_style_list_sub_text_focus";
3437             }
3438             GENLIST_DESCRIPTION_FLIP_ENABLED
3439          }
3440       }
3441    }
3442
3443 // 3.2.6
3444    group { name: "elm/genlist/item/2text.1icon.3/default";
3445       alias: "elm/genlist/item_odd/2text.1icon.3/default";
3446       alias: "elm/genlist/item_compress/2text.1icon.3/default";
3447       alias: "elm/genlist/item_compress_odd/2text.1icon.3/default";
3448       data.item: "stacking" "above";
3449       data.item: "selectraise" "on";
3450       data.item: "texts" "elm.text.1 elm.text.2";
3451       data.item: "contents" "elm.icon";
3452       data.item: "flips" "elm.flip.content";
3453       images {
3454          image: "00_list_bar_press_1x80.png" COMP;
3455       }
3456       parts {
3457          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3458          GENLIST_PART_BG_IMAGE
3459          GENLIST_PART_BOTTOM_LINE
3460          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3461          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3462          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3463          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3464          part { name: "elm.text.1";
3465             clip_to: "disclip";
3466             type: TEXT;
3467             mouse_events: 0;
3468             scale: 1;
3469             description { state: "default" 0.0;
3470                min: 0 GENLIST_SIZE_61_INC;
3471                fixed: 0 1;
3472                rel1 {
3473                   relative: 1.0 1.0;
3474                   to_x: "elm.padding.left";
3475                   to_y: "elm.padding.top";
3476                }
3477                rel2 {
3478                   relative: 0.0 1.0;
3479                   to_x: "elm.padding.icon.left";
3480                   to_y: "elm.padding.top";
3481                }
3482                align: 0.0 0.0;
3483                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
3484                text {
3485                   font: "SLP:style=Roman";
3486                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
3487                   min: 0 1;
3488                   align: 0.0 0.5;
3489                   text_class: "list_item";
3490                }
3491             }
3492             description { state: "selected" 0.0;
3493                inherit: "default" 0.0;
3494                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
3495             }
3496             GENLIST_DESCRIPTION_FLIP_ENABLED
3497          }
3498          part { name: "elm.icon";
3499             clip_to: "disclip";
3500             type: SWALLOW;
3501             scale: 1;
3502             description { state: "default" 0.0;
3503                fixed: 1 1;
3504                rel1 {
3505                   relative: 0.0 1.0;
3506                   to_x: "elm.padding.right";
3507                   to_y: "elm.padding.top";
3508                }
3509                rel2 {
3510                   relative: 0.0 1.0;
3511                   to_x: "elm.padding.right";
3512                   to_y: "elm.text.1";
3513                }
3514                align: 1.0 0.5;
3515             }
3516             GENLIST_DESCRIPTION_FLIP_ENABLED
3517          }
3518          part { name: "elm.padding.icon.left";
3519             clip_to: "disclip";
3520             type: RECT;
3521             scale: 1;
3522             description { state: "default" 0.0;
3523                min: GENLIST_PADDING_16_INC 0;
3524                fixed: 1 0;
3525                rel1.to_x: "elm.icon";
3526                rel2 {
3527                   relative: 0.0 1.0;
3528                   to_x: "elm.icon";
3529                }
3530                align: 1.0 0.0;
3531                visible: 0;
3532             }
3533          }
3534          part { name: "elm.text.2";
3535             clip_to: "disclip";
3536             type: TEXT;
3537             mouse_events: 0;
3538             scale: 1;
3539             description { state: "default" 0.0;
3540                rel1 {
3541                   relative: 1.0 1.0;
3542                   to_x: "elm.padding.left";
3543                   to_y: "elm.text.1";
3544                }
3545                rel2 {
3546                   relative: 0.0 0.0;
3547                   to_x: "elm.padding.icon.left";
3548                   to_y: "elm.padding.bottom";
3549                }
3550                align: 0.0 0.0;
3551                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
3552                text {
3553                   font: "SLP:style=Medium";
3554                   size: GENLIST_FONT_32_INC;
3555                   min: 0 1;
3556                   align: 0.0 0.5;
3557                   text_class: "slp_medium";
3558                }
3559             }
3560             description { state: "selected" 0.0;
3561                inherit: "default" 0.0;
3562                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
3563             }
3564             GENLIST_DESCRIPTION_FLIP_ENABLED
3565          }
3566          GENLIST_PART_FLIP
3567          GENLIST_PART_DISCLIP
3568       }
3569       programs {
3570          // signal: elm,state,%s,active
3571          //   a "check" item named %s went active
3572          // signal: elm,state,%s,passive
3573          //   a "check" item named %s went passive
3574          // default is passive
3575          program { name: "go_active";
3576             signal: "elm,state,selected";
3577             source: "elm";
3578             action: STATE_SET "selected" 0.0;
3579             target: "bg_image";
3580             target: "elm.text.1";
3581             target: "elm.text.2";
3582             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3583          }
3584          program { name: "go_passive";
3585             signal: "elm,state,unselected";
3586             source: "elm";
3587             action: STATE_SET "default" 0.0;
3588             target: "bg_image";
3589             target: "elm.text.1";
3590             target: "elm.text.2";
3591             transition: LINEAR 0.1;
3592          }
3593          program { name: "go_disabled";
3594             signal: "elm,state,disabled";
3595             source: "elm";
3596             action: STATE_SET "disabled" 0.0;
3597             target: "disclip";
3598          }
3599          program { name: "go_enabled";
3600             signal: "elm,state,enabled";
3601             source: "elm";
3602             action: STATE_SET "default" 0.0;
3603             target: "disclip";
3604          }
3605          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
3606          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3607       }
3608    }
3609
3610 // 3.2.7
3611    group { name: "elm/genlist/item/3text.1icon/default";
3612       alias: "elm/genlist/item_odd/3text.1icon/default";
3613       alias: "elm/genlist/item_compress/3text.1icon/default";
3614       alias: "elm/genlist/item_compress_odd/3text.1icon/default";
3615       data.item: "stacking" "above";
3616       data.item: "selectraise" "on";
3617       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
3618       data.item: "contents" "elm.icon";
3619       data.item: "flips" "elm.flip.content";
3620       images {
3621          image: "00_list_bar_press_1x80.png" COMP;
3622       }
3623       parts {
3624          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3625          GENLIST_PART_BG_IMAGE
3626          GENLIST_PART_BOTTOM_LINE
3627          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3628          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3629          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3630          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3631          part { name: "elm.text.3";
3632             clip_to: "disclip";
3633             type: TEXT;
3634             mouse_events: 0;
3635             scale: 1;
3636             description { state: "default" 0.0;
3637                min: GENLIST_SIZE_133_INC GENLIST_SIZE_48_INC;
3638                fixed: 1 1;
3639                rel1 {
3640                   relative: 0.0 0.0;
3641                   to_x: "elm.padding.right";
3642                   to_y: "elm.padding.bottom";
3643                }
3644                rel2 {
3645                   relative: 0.0 0.0;
3646                   to_x: "elm.padding.right";
3647                   to_y: "elm.padding.bottom";
3648                }
3649                align: 1.0 1.0;
3650                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
3651                text {
3652                   font: "SLP:style=Medium";
3653                   size: GENLIST_FONT_32_INC;
3654                   min: 0 1;
3655                   align: 1.0 0.5;
3656                   text_class: "slp_medium";
3657                }
3658             }
3659             description { state: "selected" 0.0;
3660                inherit: "default" 0.0;
3661                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
3662             }
3663             GENLIST_DESCRIPTION_FLIP_ENABLED
3664          }
3665          part { name: "elm.padding.text3.left";
3666             clip_to: "disclip";
3667             type: RECT;
3668             mouse_events: 0;
3669             scale: 1;
3670             description { state: "default" 0.0;
3671                min: GENLIST_ICON_SMALL_SIZE 0;
3672                fixed: 1 0;
3673                rel1.to_x: "elm.text.3";
3674                rel2 {
3675                   relative: 0.0 1.0;
3676                   to_x: "elm.text.3";
3677                }
3678                align: 1.0 0.5;
3679                visible: 0;
3680             }
3681          }
3682          part { name: "elm.icon";
3683             clip_to: "disclip";
3684             type: SWALLOW;
3685             scale: 1;
3686             description { state: "default" 0.0;
3687                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3688                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3689                fixed: 1 1;
3690                rel1 {
3691                   relative: 0.0 1.0;
3692                   to_x: "elm.padding.right";
3693                   to_y: "elm.padding.top";
3694                }
3695                rel2 {
3696                   relative: 0.0 0.0;
3697                   to_x: "elm.padding.right";
3698                   to_y: "elm.text.3";
3699                }
3700                align: 1.0 0.5;
3701             }
3702             GENLIST_DESCRIPTION_FLIP_ENABLED
3703          }
3704          part { name: "elm.padding.icon.left";
3705             clip_to: "disclip";
3706             type: RECT;
3707             scale: 1;
3708             description { state: "default" 0.0;
3709                min: GENLIST_PADDING_16_INC 0;
3710                fixed: 1 0;
3711                rel1.to_x: "elm.icon";
3712                rel2 {
3713                   relative: 0.0 1.0;
3714                   to_x: "elm.icon";
3715                }
3716                align: 1.0 0.0;
3717                visible: 0;
3718             }
3719          }
3720          part { name: "elm.text.1";
3721             clip_to: "disclip";
3722             type: TEXT;
3723             mouse_events: 0;
3724             scale: 1;
3725             description { state: "default" 0.0;
3726                rel1 {
3727                   relative: 1.0 1.0;
3728                   to_x: "elm.padding.left";
3729                   to_y: "elm.padding.top";
3730                }
3731                rel2 {
3732                   relative: 0.0 0.0;
3733                   to_x: "elm.padding.icon.left";
3734                   to_y: "elm.text.3";
3735                }
3736                align: 0.0 0.5;
3737                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
3738                text {
3739                   font: "SLP:style=Roman";
3740                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
3741                   min: 0 1;
3742                   align: 0.0 0.5;
3743                   text_class: "list_item";
3744                }
3745             }
3746             description { state: "selected" 0.0;
3747                inherit: "default" 0.0;
3748                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
3749             }
3750             GENLIST_DESCRIPTION_FLIP_ENABLED
3751          }
3752          part { name: "elm.text.2";
3753             clip_to: "disclip";
3754             type: TEXT;
3755             mouse_events: 0;
3756             scale: 1;
3757             description { state: "default" 0.0;
3758                rel1 {
3759                   relative: 1.0 1.0;
3760                   to_x: "elm.padding.left";
3761                   to_y: "elm.text.1";
3762                }
3763                rel2 {
3764                   relative: 0.0 0.0;
3765                   to_x: "elm.padding.text3.left";
3766                   to_y: "elm.padding.bottom";
3767                }
3768                align: 0.0 0.5;
3769                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
3770                text {
3771                   font: "SLP:style=Medium";
3772                   size: GENLIST_FONT_32_INC;
3773                   min: 0 1;
3774                   align: 0.0 0.5;
3775                   text_class: "slp_medium";
3776                }
3777             }
3778             description { state: "selected" 0.0;
3779                inherit: "default" 0.0;
3780                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
3781             }
3782             GENLIST_DESCRIPTION_FLIP_ENABLED
3783          }
3784          GENLIST_PART_FLIP
3785          GENLIST_PART_DISCLIP
3786       }
3787       programs {
3788          // signal: elm,state,%s,active
3789          //   a "check" item named %s went active
3790          // signal: elm,state,%s,passive
3791          //   a "check" item named %s went passive
3792          // default is passive
3793          program { name: "go_active";
3794             signal: "elm,state,selected";
3795             source: "elm";
3796             action: STATE_SET "selected" 0.0;
3797             target: "bg_image";
3798             target: "elm.text.1";
3799             target: "elm.text.2";
3800             target: "elm.text.3";
3801             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3802          }
3803          program { name: "go_passive";
3804             signal: "elm,state,unselected";
3805             source: "elm";
3806             action: STATE_SET "default" 0.0;
3807             target: "bg_image";
3808             target: "elm.text.1";
3809             target: "elm.text.2";
3810             target: "elm.text.3";
3811             transition: LINEAR 0.1;
3812          }
3813          program { name: "go_disabled";
3814             signal: "elm,state,disabled";
3815             source: "elm";
3816             action: STATE_SET "disabled" 0.0;
3817             target: "disclip";
3818          }
3819          program { name: "go_enabled";
3820             signal: "elm,state,enabled";
3821             source: "elm";
3822             action: STATE_SET "default" 0.0;
3823             target: "disclip";
3824          }
3825          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
3826          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3827       }
3828    }
3829
3830 // 3.2.8
3831    group { name: "elm/genlist/item/2text.2icon/default";
3832       alias: "elm/genlist/item_odd/2text.2icon/default";
3833       alias: "elm/genlist/item_compress/2text.2icon/default";
3834       alias: "elm/genlist/item_compress_odd/2text.2icon/default";
3835       data.item: "stacking" "above";
3836       data.item: "selectraise" "on";
3837       data.item: "texts" "elm.text.1 elm.text.2";
3838       data.item: "contents" "elm.icon.1 elm.icon.2";
3839       data.item: "flips" "elm.flip.content";
3840       images {
3841          image: "00_list_bar_press_1x80.png" COMP;
3842       }
3843       parts {
3844          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3845          GENLIST_PART_BG_IMAGE
3846          GENLIST_PART_BOTTOM_LINE
3847          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3848          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3849          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3850          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3851          part { name: "elm.icon.1";
3852             clip_to: "disclip";
3853             type: SWALLOW;
3854             scale: 1;
3855             description { state: "default" 0.0;
3856                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3857                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3858                fixed: 1 1;
3859                rel1 {
3860                   relative: 1.0 1.0;
3861                   to_x: "elm.padding.left";
3862                   to_y: "elm.text.1";
3863                }
3864                rel2 {
3865                   relative: 1.0 0.0;
3866                   to_x: "elm.padding.left";
3867                   to_y: "elm.padding.bottom";
3868                }
3869                align: 0.0 0.5;
3870             }
3871             GENLIST_DESCRIPTION_FLIP_ENABLED
3872          }
3873          part { name: "elm.padding.icon1.right";
3874             clip_to: "disclip";
3875             type: RECT;
3876             scale: 1;
3877             description { state: "default" 0.0;
3878                min: GENLIST_PADDING_16_INC 0;
3879                fixed: 1 0;
3880                rel1 {
3881                   relative: 1.0 0.0;
3882                   to_x: "elm.icon.1";
3883                }
3884                rel2.to_x: "elm.icon.1";
3885                align: 0.0 0.0;
3886                visible: 0;
3887             }
3888          }
3889          part { name: "elm.icon.2";
3890             clip_to: "disclip";
3891             type: SWALLOW;
3892             scale: 1;
3893             description { state: "default" 0.0;
3894                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3895                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3896                fixed: 1 1;
3897                rel1 {
3898                   relative: 0.0 1.0;
3899                   to_x: "elm.padding.right";
3900                   to_y: "elm.padding.top";
3901                }
3902                rel2 {
3903                   relative: 0.0 1.0;
3904                   to_x: "elm.padding.right";
3905                   to_y: "elm.text.1";
3906                }
3907                align: 1.0 0.5;
3908             }
3909             GENLIST_DESCRIPTION_FLIP_ENABLED
3910          }
3911          part { name: "elm.padding.icon2.left";
3912             clip_to: "disclip";
3913             type: RECT;
3914             scale: 1;
3915             description { state: "default" 0.0;
3916                min: GENLIST_PADDING_16_INC 0;
3917                fixed: 1 0;
3918                rel1 {
3919                   relative: 0.0 0.0;
3920                   to_x: "elm.icon.2";
3921                }
3922                rel2.to_x: "elm.icon.2";
3923                align: 1.0 0.0;
3924                visible: 0;
3925             }
3926          }
3927          part { name: "elm.text.1";
3928             clip_to: "disclip";
3929             type: TEXT;
3930             mouse_events: 0;
3931             scale: 1;
3932             description { state: "default" 0.0;
3933                min: 0 GENLIST_SIZE_61_INC;
3934                fixed: 0 1;
3935                rel1 {
3936                   relative: 1.0 1.0;
3937                   to_x: "elm.padding.left";
3938                   to_y: "elm.padding.top";
3939                }
3940                rel2 {
3941                   relative: 0.0 1.0;
3942                   to_x: "elm.padding.icon2.left";
3943                   to_y: "elm.padding.top";
3944                }
3945                align: 0.0 0.0;
3946                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
3947                text {
3948                   font: "SLP:style=Roman";
3949                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
3950                   min: 0 1;
3951                   align: 0.0 0.5;
3952                   text_class: "list_item";
3953                }
3954             }
3955             description { state: "selected" 0.0;
3956                inherit: "default" 0.0;
3957                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
3958             }
3959             GENLIST_DESCRIPTION_FLIP_ENABLED
3960          }
3961          part { name: "elm.text.2";
3962             clip_to: "disclip";
3963             type: TEXT;
3964             mouse_events: 0;
3965             scale: 1;
3966             description { state: "default" 0.0;
3967                rel1 {
3968                   relative: 1.0 1.0;
3969                   to_x: "elm.padding.icon1.right";
3970                   to_y: "elm.text.1";
3971                }
3972                rel2 {
3973                   relative: 0.0 0.0;
3974                   to_x: "elm.padding.right";
3975                   to_y: "elm.padding.bottom";
3976                }
3977                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
3978                text {
3979                   font: "SLP:style=Medium";
3980                   size: GENLIST_FONT_32_INC;
3981                   min: 0 1;
3982                   align: 0.0 0.5;
3983                   text_class: "slp_medium";
3984                }
3985             }
3986             description { state: "selected" 0.0;
3987                inherit: "default" 0.0;
3988                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
3989             }
3990             GENLIST_DESCRIPTION_FLIP_ENABLED
3991          }
3992          GENLIST_PART_FLIP
3993          GENLIST_PART_DISCLIP
3994       }
3995       programs {
3996          // signal: elm,state,%s,active
3997          //   a "check" item named %s went active
3998          // signal: elm,state,%s,passive
3999          //   a "check" item named %s went passive
4000          // default is passive
4001          program { name: "go_active";
4002             signal: "elm,state,selected";
4003             source: "elm";
4004             action: STATE_SET "selected" 0.0;
4005             target: "bg_image";
4006             target: "elm.text.1";
4007             target: "elm.text.2";
4008             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4009          }
4010          program { name: "go_passive";
4011             signal: "elm,state,unselected";
4012             source: "elm";
4013             action: STATE_SET "default" 0.0;
4014             target: "bg_image";
4015             target: "elm.text.1";
4016             target: "elm.text.2";
4017             transition: LINEAR 0.1;
4018          }
4019          program { name: "go_disabled";
4020             signal: "elm,state,disabled";
4021             source: "elm";
4022             action: STATE_SET "disabled" 0.0;
4023             target: "disclip";
4024          }
4025          program { name: "go_enabled";
4026             signal: "elm,state,enabled";
4027             source: "elm";
4028             action: STATE_SET "default" 0.0;
4029             target: "disclip";
4030          }
4031          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
4032          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4033       }
4034    }
4035
4036 // 3.2.9
4037    group { name: "elm/genlist/item/2text.7/default";
4038       alias: "elm/genlist/item_odd/2text.7/default";
4039       alias: "elm/genlist/item_compress/2text.7/default";
4040       alias: "elm/genlist/item_compress_odd/2text.7/default";
4041       data.item: "stacking" "above";
4042       data.item: "selectraise" "on";
4043       data.item: "texts" "elm.text.1 elm.text.2";
4044       data.item: "flips" "elm.flip.content";
4045       images {
4046          image: "00_list_bar_press_1x80.png" COMP;
4047       }
4048       parts {
4049          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4050          GENLIST_PART_BG_IMAGE
4051          GENLIST_PART_BOTTOM_LINE
4052          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4053          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4054          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4055          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4056          part { name: "elm.text.1";
4057             clip_to: "disclip";
4058             type: TEXT;
4059             mouse_events: 0;
4060             scale: 1;
4061             description { state: "default" 0.0;
4062                min: 0 GENLIST_SIZE_61_INC;
4063                fixed: 0 1;
4064                rel1 {
4065                   relative: 1.0 1.0;
4066                   to_x: "elm.padding.left";
4067                   to_y: "elm.padding.top";
4068                }
4069                rel2 {
4070                   relative: 0.0 1.0;
4071                   to_x: "elm.padding.right";
4072                   to_y: "elm.padding.top";
4073                }
4074                align: 0.0 0.0;
4075                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
4076                text {
4077                   font: "SLP:style=Roman";
4078                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
4079                   min: 0 1;
4080                   align: 0.0 0.5;
4081                   text_class: "list_item";
4082                }
4083             }
4084             description { state: "selected" 0.0;
4085                inherit: "default" 0.0;
4086                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4087             }
4088             GENLIST_DESCRIPTION_FLIP_ENABLED
4089          }
4090          part { name: "elm.text.2";
4091             clip_to: "disclip";
4092             type: TEXT;
4093             mouse_events: 0;
4094             scale: 1;
4095             description { state: "default" 0.0;
4096                rel1 {
4097                   relative: 1.0 1.0;
4098                   to_x: "elm.padding.left";
4099                   to_y: "elm.text.1";
4100                }
4101                rel2 {
4102                   relative: 0.0 0.0;
4103                   to_x: "elm.padding.right";
4104                   to_y: "elm.padding.bottom";
4105                }
4106                align: 0.0 0.0;
4107                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
4108                text {
4109                   font: "SLP:style=Medium";
4110                   size: GENLIST_FONT_32_INC;
4111                   min: 0 1;
4112                   align: 0.0 0.5;
4113                   text_class: "slp_medium";
4114                }
4115             }
4116             description { state: "selected" 0.0;
4117                inherit: "default" 0.0;
4118                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4119             }
4120             GENLIST_DESCRIPTION_FLIP_ENABLED
4121          }
4122          GENLIST_PART_FLIP
4123          GENLIST_PART_DISCLIP
4124       }
4125       programs {
4126          // signal: elm,state,%s,active
4127          //   a "check" item named %s went active
4128          // signal: elm,state,%s,passive
4129          //   a "check" item named %s went passive
4130          // default is passive
4131          program { name: "go_active";
4132             signal: "elm,state,selected";
4133             source: "elm";
4134             action: STATE_SET "selected" 0.0;
4135             target: "bg_image";
4136             target: "elm.text.1";
4137             target: "elm.text.2";
4138             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4139          }
4140          program { name: "go_passive";
4141             signal: "elm,state,unselected";
4142             source: "elm";
4143             action: STATE_SET "default" 0.0;
4144             target: "bg_image";
4145             target: "elm.text.1";
4146             target: "elm.text.2";
4147             transition: LINEAR 0.1;
4148          }
4149          program { name: "go_disabled";
4150             signal: "elm,state,disabled";
4151             source: "elm";
4152             action: STATE_SET "disabled" 0.0;
4153             target: "disclip";
4154          }
4155          program { name: "go_enabled";
4156             signal: "elm,state,enabled";
4157             source: "elm";
4158             action: STATE_SET "default" 0.0;
4159             target: "disclip";
4160          }
4161          GENLIST_PROGRAM_FLIP_2TEXT
4162          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4163       }
4164    }
4165
4166 // 3.2.10
4167    group { name: "elm/genlist/item/2text.1icon.7/default";
4168       alias: "elm/genlist/item_odd/2text.1icon.7/default";
4169       alias: "elm/genlist/item_compress/2text.1icon.7/default";
4170       alias: "elm/genlist/item_compress_odd/2text.1icon.7/default";
4171       data.item: "stacking" "above";
4172       data.item: "selectraise" "on";
4173       data.item: "texts" "elm.text.1 elm.text.2";
4174       data.item: "contents" "elm.icon";
4175       data.item: "flips" "elm.flip.content";
4176       images {
4177          image: "00_list_bar_press_1x80.png" COMP;
4178       }
4179       parts {
4180          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4181          GENLIST_PART_BG_IMAGE
4182          GENLIST_PART_BOTTOM_LINE
4183          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4184          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4185          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4186          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4187          part { name: "elm.icon";
4188             clip_to: "disclip";
4189             type: SWALLOW;
4190             scale: 1;
4191             description { state: "default" 0.0;
4192                fixed: 1 1;
4193                rel1 {
4194                   relative: 0.0 1.0;
4195                   to_x: "elm.padding.right";
4196                   to_y: "elm.padding.top";
4197                }
4198                rel2 {
4199                   relative: 0.0 0.0;
4200                   to_x: "elm.padding.right";
4201                   to_y: "elm.padding.bottom";
4202                }
4203                align: 1.0 0.5;
4204             }
4205             GENLIST_DESCRIPTION_FLIP_ENABLED
4206          }
4207          part { name: "elm.padding.icon.left";
4208             clip_to: "disclip";
4209             type: RECT;
4210             scale: 1;
4211             description { state: "default" 0.0;
4212                min: GENLIST_PADDING_16_INC 0;
4213                fixed: 1 0;
4214                rel1.to_x: "elm.icon";
4215                rel2 {
4216                   relative: 0.0 1.0;
4217                   to_x: "elm.icon";
4218                }
4219                align: 1.0 0.0;
4220                visible: 0;
4221             }
4222          }
4223          part { name: "elm.text.1";
4224             clip_to: "disclip";
4225             type: TEXT;
4226             mouse_events: 0;
4227             scale: 1;
4228             description { state: "default" 0.0;
4229                min: 0 GENLIST_SIZE_61_INC;
4230                fixed: 0 1;
4231                rel1 {
4232                   relative: 1.0 1.0;
4233                   to_x: "elm.padding.left";
4234                   to_y: "elm.padding.top";
4235                }
4236                rel2 {
4237                   relative: 0.0 1.0;
4238                   to_x: "elm.padding.icon.left";
4239                   to_y: "elm.padding.top";
4240                }
4241                align: 0.0 0.0;
4242                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
4243                text {
4244                   font: "SLP:style=Roman";
4245                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
4246                   min: 0 1;
4247                   align: 0.0 0.5;
4248                   text_class: "list_item";
4249                }
4250             }
4251             description { state: "selected" 0.0;
4252                inherit: "default" 0.0;
4253                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4254             }
4255             GENLIST_DESCRIPTION_FLIP_ENABLED
4256          }
4257          part { name: "elm.text.2";
4258             clip_to: "disclip";
4259             type: TEXT;
4260             mouse_events: 0;
4261             scale: 1;
4262             description { state: "default" 0.0;
4263                rel1 {
4264                   relative: 1.0 1.0;
4265                   to_x: "elm.padding.left";
4266                   to_y: "elm.text.1";
4267                }
4268                rel2 {
4269                   relative: 0.0 0.0;
4270                   to_x: "elm.padding.icon.left";
4271                   to_y: "elm.padding.bottom";
4272                }
4273                align: 0.0 0.0;
4274                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
4275                text {
4276                   font: "SLP:style=Medium";
4277                   size: GENLIST_FONT_32_INC;
4278                   min: 0 1;
4279                   align: 0.0 0.5;
4280                   text_class: "slp_medium";
4281                }
4282             }
4283             description { state: "selected" 0.0;
4284                inherit: "default" 0.0;
4285                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4286             }
4287             GENLIST_DESCRIPTION_FLIP_ENABLED
4288          }
4289          GENLIST_PART_FLIP
4290          GENLIST_PART_DISCLIP
4291       }
4292       programs {
4293          // signal: elm,state,%s,active
4294          //   a "check" item named %s went active
4295          // signal: elm,state,%s,passive
4296          //   a "check" item named %s went passive
4297          // default is passive
4298          program { name: "go_active";
4299             signal: "elm,state,selected";
4300             source: "elm";
4301             action: STATE_SET "selected" 0.0;
4302             target: "bg_image";
4303             target: "elm.text.1";
4304             target: "elm.text.2";
4305             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4306          }
4307          program { name: "go_passive";
4308             signal: "elm,state,unselected";
4309             source: "elm";
4310             action: STATE_SET "default" 0.0;
4311             target: "bg_image";
4312             target: "elm.text.1";
4313             target: "elm.text.2";
4314             transition: LINEAR 0.1;
4315          }
4316          program { name: "go_disabled";
4317             signal: "elm,state,disabled";
4318             source: "elm";
4319             action: STATE_SET "disabled" 0.0;
4320             target: "disclip";
4321          }
4322          program { name: "go_enabled";
4323             signal: "elm,state,enabled";
4324             source: "elm";
4325             action: STATE_SET "default" 0.0;
4326             target: "disclip";
4327          }
4328          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4329          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4330       }
4331    }
4332
4333    group { name: "elm/genlist/item_compress/2text.1icon.7.tb/default";
4334       inherit: "elm/genlist/item/2text.1icon.7/default";
4335       parts {
4336          part { name: "elm.text.2";
4337             clip_to: "disclip";
4338             type: TEXTBLOCK;
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.5;
4353                text {
4354                   style: "genlist_style_list_sub_text_default";
4355                   min: 0 1;
4356                   align: 0.0 0.5;
4357                }
4358             }
4359             description { state: "selected" 0.0;
4360                inherit: "default" 0.0;
4361                text.style: "genlist_style_list_sub_text_focus";
4362             }
4363             GENLIST_DESCRIPTION_FLIP_ENABLED
4364          }
4365       }
4366    }
4367
4368 // 3.2.11
4369    group { name: "elm/genlist/item/2text.1icon.11/default";
4370       alias: "elm/genlist/item_odd/2text.1icon.11/default";
4371       alias: "elm/genlist/item_compress/2text.1icon.11/default";
4372       alias: "elm/genlist/item_compress_odd/2text.1icon.11/default";
4373       data.item: "stacking" "above";
4374       data.item: "selectraise" "on";
4375       data.item: "texts" "elm.text.1 elm.text.2";
4376       data.item: "contents" "elm.icon";
4377       data.item: "flips" "elm.flip.content";
4378       images {
4379          image: "00_list_bar_press_1x80.png" COMP;
4380       }
4381       parts {
4382          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4383          GENLIST_PART_BG_IMAGE
4384          GENLIST_PART_BOTTOM_LINE
4385          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4386          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4387          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4388          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4389          part { name: "elm.icon";
4390             clip_to: "disclip";
4391             type: SWALLOW;
4392             scale: 1;
4393             description { state: "default" 0.0;
4394                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4395                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4396                fixed: 1 1;
4397                rel1 {
4398                   relative: 0.0 1.0;
4399                   to_x: "elm.padding.right";
4400                   to_y: "elm.padding.top";
4401                }
4402                rel2 {
4403                   relative: 0.0 0.0;
4404                   to_x: "elm.padding.right";
4405                   to_y: "elm.padding.bottom";
4406                }
4407                align: 1.0 0.5;
4408             }
4409             GENLIST_DESCRIPTION_FLIP_ENABLED
4410          }
4411          part { name: "elm.padding.icon.left";
4412             clip_to: "disclip";
4413             type: RECT;
4414             scale: 1;
4415             description { state: "default" 0.0;
4416                min: GENLIST_PADDING_16_INC 0;
4417                fixed: 1 0;
4418                rel1.to_x: "elm.icon";
4419                rel2 {
4420                   relative: 0.0 1.0;
4421                   to_x: "elm.icon";
4422                }
4423                align: 1.0 0.0;
4424                visible: 0;
4425             }
4426          }
4427          part { name: "elm.text.1";
4428             clip_to: "disclip";
4429             type: TEXT;
4430             mouse_events: 0;
4431             scale: 1;
4432             description { state: "default" 0.0;
4433                min: 0 GENLIST_SIZE_61_INC;
4434                fixed: 0 1;
4435                rel1 {
4436                   relative: 1.0 1.0;
4437                   to_x: "elm.padding.left";
4438                   to_y: "elm.padding.top";
4439                }
4440                rel2 {
4441                   relative: 0.0 1.0;
4442                   to_x: "elm.padding.icon.left";
4443                   to_y: "elm.padding.top";
4444                }
4445                align: 0.0 0.0;
4446                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
4447                text {
4448                   font: "SLP:style=Roman";
4449                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
4450                   min: 0 1;
4451                   align: 0.0 0.5;
4452                   text_class: "list_item";
4453                }
4454             }
4455             description { state: "selected" 0.0;
4456                inherit: "default" 0.0;
4457                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4458             }
4459             GENLIST_DESCRIPTION_FLIP_ENABLED
4460          }
4461          part { name: "elm.text.2";
4462             clip_to: "disclip";
4463             type: TEXT;
4464             mouse_events: 0;
4465             scale: 1;
4466             description { state: "default" 0.0;
4467                rel1 {
4468                   relative: 1.0 1.0;
4469                   to_x: "elm.padding.left";
4470                   to_y: "elm.text.1";
4471                }
4472                rel2 {
4473                   relative: 0.0 0.0;
4474                   to_x: "elm.padding.icon.left";
4475                   to_y: "elm.padding.bottom";
4476                }
4477                align: 0.0 0.0;
4478                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
4479                text {
4480                   font: "SLP:style=Medium";
4481                   size: GENLIST_LIST_SUB_TEXT_SIZE;
4482                   min: 0 1;
4483                   align: 0.0 0.5;
4484                   text_class: "slp_medium";
4485                }
4486             }
4487             description { state: "selected" 0.0;
4488                inherit: "default" 0.0;
4489                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4490             }
4491             GENLIST_DESCRIPTION_FLIP_ENABLED
4492          }
4493          GENLIST_PART_FLIP
4494          GENLIST_PART_DISCLIP
4495       }
4496       programs {
4497          // signal: elm,state,%s,active
4498          //   a "check" item named %s went active
4499          // signal: elm,state,%s,passive
4500          //   a "check" item named %s went passive
4501          // default is passive
4502          program { name: "go_active";
4503             signal: "elm,state,selected";
4504             source: "elm";
4505             action: STATE_SET "selected" 0.0;
4506             target: "bg_image";
4507             target: "elm.text.1";
4508             target: "elm.text.2";
4509             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4510          }
4511          program { name: "go_passive";
4512             signal: "elm,state,unselected";
4513             source: "elm";
4514             action: STATE_SET "default" 0.0;
4515             target: "bg_image";
4516             target: "elm.text.1";
4517             target: "elm.text.2";
4518             transition: LINEAR 0.1;
4519          }
4520          program { name: "go_disabled";
4521             signal: "elm,state,disabled";
4522             source: "elm";
4523             action: STATE_SET "disabled" 0.0;
4524             target: "disclip";
4525          }
4526          program { name: "go_enabled";
4527             signal: "elm,state,enabled";
4528             source: "elm";
4529             action: STATE_SET "default" 0.0;
4530             target: "disclip";
4531          }
4532          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4533          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4534       }
4535    }
4536
4537 // 3.2.12
4538    group { name: "elm/genlist/item/2text.2icon.2/default";
4539       alias: "elm/genlist/item_odd/2text.2icon.2/default";
4540       alias: "elm/genlist/item_compress/2text.2icon.2/default";
4541       alias: "elm/genlist/item_compress_odd/2text.2icon.2/default";
4542       data.item: "stacking" "above";
4543       data.item: "selectraise" "on";
4544       data.item: "texts" "elm.text.1 elm.text.2";
4545       data.item: "contents" "elm.icon.1 elm.icon.2";
4546       data.item: "flips" "elm.flip.content";
4547       images {
4548          image: "00_list_bar_press_1x80.png" COMP;
4549       }
4550       parts {
4551          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4552          GENLIST_PART_BG_IMAGE
4553          GENLIST_PART_BOTTOM_LINE
4554          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4555          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4556          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4557          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4558          part { name: "elm.icon.2";
4559             clip_to: "disclip";
4560             type: SWALLOW;
4561             scale: 1;
4562             description { state: "default" 0.0;
4563                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4564                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4565                fixed: 1 1;
4566                rel1 {
4567                   relative: 0.0 1.0;
4568                   to_x: "elm.padding.right";
4569                   to_y: "elm.padding.top";
4570                }
4571                rel2 {
4572                   relative: 0.0 0.0;
4573                   to_x: "elm.padding.right";
4574                   to_y: "elm.padding.bottom";
4575                }
4576                align: 1.0 0.5;
4577             }
4578             GENLIST_DESCRIPTION_FLIP_ENABLED
4579          }
4580          part { name: "elm.padding.icon2.left";
4581             clip_to: "disclip";
4582             type: RECT;
4583             scale: 1;
4584             description { state: "default" 0.0;
4585                min: GENLIST_PADDING_16_INC 0;
4586                fixed: 1 0;
4587                rel1.to_x: "elm.icon.2";
4588                rel2 {
4589                   relative: 0.0 1.0;
4590                   to_x: "elm.icon.2";
4591                }
4592                align: 1.0 0.0;
4593                visible: 0;
4594             }
4595          }
4596         part { name: "elm.text.1";
4597             clip_to: "disclip";
4598             type: TEXT;
4599             mouse_events: 0;
4600             scale: 1;
4601             description { state: "default" 0.0;
4602                min: 0 GENLIST_SIZE_61_INC;
4603                fixed: 0 1;
4604                rel1 {
4605                   relative: 1.0 1.0;
4606                   to_x: "elm.padding.left";
4607                   to_y: "elm.padding.top";
4608                }
4609                rel2 {
4610                   relative: 0.0 1.0;
4611                   to_x: "elm.padding.icon2.left";
4612                   to_y: "elm.padding.top";
4613                }
4614                align: 0.0 0.0;
4615                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
4616                text {
4617                   font: "SLP:style=Roman";
4618                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
4619                   min: 0 1;
4620                   align: 0.0 0.5;
4621                   text_class: "list_item";
4622                }
4623             }
4624             description { state: "selected" 0.0;
4625                inherit: "default" 0.0;
4626                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4627             }
4628             GENLIST_DESCRIPTION_FLIP_ENABLED
4629          }
4630          part { name: "elm.text.2";
4631             clip_to: "disclip";
4632             type: TEXT;
4633             mouse_events: 0;
4634             scale: 1;
4635             description { state: "default" 0.0;
4636                rel1 {
4637                   relative: 1.0 1.0;
4638                   to_x: "elm.padding.left";
4639                   to_y: "elm.text.1";
4640                }
4641                rel2 {
4642                   relative: 1.0 0.0;
4643                   to_x: "elm.padding.left";
4644                   to_y: "elm.padding.bottom";
4645                }
4646                align: 0.0 0.5;
4647                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
4648                text {
4649                   font: "SLP:style=Medium";
4650                   size: GENLIST_LIST_SUB_TEXT_SIZE;
4651                   min: 0 1;
4652                   align: 0.0 0.5;
4653                   text_class: "slp_medium";
4654                }
4655             }
4656             description { state: "selected" 0.0;
4657                inherit: "default" 0.0;
4658                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
4659             }
4660             GENLIST_DESCRIPTION_FLIP_ENABLED
4661          }
4662          part { name: "elm.padding.text2.right";
4663             clip_to: "disclip";
4664             type: RECT;
4665             scale: 1;
4666             description { state: "default" 0.0;
4667                min: GENLIST_PADDING_16_INC 0;
4668                fixed: 1 0;
4669                visible: 0;
4670                rel1 {
4671                   relative: 1.0 0.0;
4672                   to_x: "elm.text.2";
4673                }
4674                rel2.to_x: "elm.text.2";
4675                align: 0.0 0.0;
4676             }
4677          }
4678          part { name: "elm.icon.1";
4679             clip_to: "disclip";
4680             type: SWALLOW;
4681             scale: 1;
4682             description { state: "default" 0.0;
4683                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
4684                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
4685                fixed: 1 1;
4686                rel1 {
4687                   relative: 1.0 1.0;
4688                   to_x: "elm.padding.text2.right";
4689                   to_y: "elm.text.1";
4690                }
4691                rel2 {
4692                   relative: 1.0 0.0;
4693                   to_x: "elm.padding.text2.right";
4694                   to_y: "elm.padding.bottom";
4695                }
4696                align: 0.0 0.5;
4697             }
4698             GENLIST_DESCRIPTION_FLIP_ENABLED
4699          }
4700          GENLIST_PART_FLIP
4701          GENLIST_PART_DISCLIP
4702       }
4703       programs {
4704          // signal: elm,state,%s,active
4705          //   a "check" item named %s went active
4706          // signal: elm,state,%s,passive
4707          //   a "check" item named %s went passive
4708          // default is passive
4709          program { name: "go_active";
4710             signal: "elm,state,selected";
4711             source: "elm";
4712             action: STATE_SET "selected" 0.0;
4713             target: "bg_image";
4714             target: "elm.text.1";
4715             target: "elm.text.2";
4716             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4717          }
4718          program { name: "go_passive";
4719             signal: "elm,state,unselected";
4720             source: "elm";
4721             action: STATE_SET "default" 0.0;
4722             target: "bg_image";
4723             target: "elm.text.1";
4724             target: "elm.text.2";
4725             transition: LINEAR 0.1;
4726          }
4727          program { name: "go_disabled";
4728             signal: "elm,state,disabled";
4729             source: "elm";
4730             action: STATE_SET "disabled" 0.0;
4731             target: "disclip";
4732          }
4733          program { name: "go_enabled";
4734             signal: "elm,state,enabled";
4735             source: "elm";
4736             action: STATE_SET "default" 0.0;
4737             target: "disclip";
4738          }
4739          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
4740          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4741       }
4742    }
4743
4744 // 3.2.13
4745    group { name: "elm/genlist/item/2text.1icon.4/default";
4746       alias: "elm/genlist/item_odd/2text.1icon.4/default";
4747       alias: "elm/genlist/item_compress/2text.1icon.4/default";
4748       alias: "elm/genlist/item_compress_odd/2text.1icon.4/default";
4749       data.item: "stacking" "above";
4750       data.item: "selectraise" "on";
4751       data.item: "texts" "elm.text.1 elm.text.2";
4752       data.item: "contents" "elm.icon";
4753       data.item: "flips" "elm.flip.content";
4754       images {
4755          image: "00_list_bar_press_1x80.png" COMP;
4756       }
4757       parts {
4758          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4759          GENLIST_PART_BG_IMAGE
4760          GENLIST_PART_BOTTOM_LINE
4761          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4762          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4763          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4764          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4765          part { name: "elm.icon";
4766             clip_to: "disclip";
4767             type: SWALLOW;
4768             scale: 1;
4769             description { state: "default" 0.0;
4770                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4771                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4772                fixed: 1 1;
4773                rel1 {
4774                   relative: 1.0 1.0;
4775                   to_x: "elm.padding.left";
4776                   to_y: "elm.padding.top";
4777                }
4778                rel2 {
4779                   relative: 1.0 0.0;
4780                   to_x: "elm.padding.left";
4781                   to_y: "elm.padding.bottom";
4782                }
4783                align: 0.0 0.5;
4784             }
4785             GENLIST_DESCRIPTION_FLIP_ENABLED
4786          }
4787          part { name: "elm.padding.icon.right";
4788             clip_to: "disclip";
4789             type: RECT;
4790             scale: 1;
4791             description { state: "default" 0.0;
4792                min: GENLIST_PADDING_16_INC 0;
4793                fixed: 1 0;
4794                rel1 {
4795                   relative: 1.0 0.0;
4796                   to_x: "elm.icon";
4797                }
4798                rel2.to_x: "elm.icon";
4799                align: 0.0 0.0;
4800                visible: 0;
4801             }
4802          }
4803          part { name: "elm.text.1";
4804             clip_to: "disclip";
4805             type: TEXT;
4806             mouse_events: 0;
4807             scale: 1;
4808             description { state: "default" 0.0;
4809                min: 0 GENLIST_SIZE_61_INC;
4810                fixed: 0 1;
4811                rel1 {
4812                   relative: 1.0 1.0;
4813                   to_x: "elm.padding.icon.right";
4814                   to_y: "elm.padding.top";
4815                }
4816                rel2 {
4817                   relative: 0.0 1.0;
4818                   to_x: "elm.padding.right";
4819                   to_y: "elm.padding.top";
4820                }
4821                align: 0.0 0.0;
4822                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
4823                text {
4824                   font: "SLP:style=Roman";
4825                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
4826                   min: 0 1;
4827                   align: 0.0 0.5;
4828                   text_class: "list_item";
4829                }
4830             }
4831             description { state: "selected" 0.0;
4832                inherit: "default" 0.0;
4833                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
4834             }
4835             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
4836             GENLIST_DESCRIPTION_FLIP_ENABLED
4837          }
4838          part { name: "elm.text.2";
4839             clip_to: "disclip";
4840             type: TEXT;
4841             mouse_events: 0;
4842             scale: 1;
4843             description { state: "default" 0.0;
4844                rel1 {
4845                   relative: 1.0 1.0;
4846                   to_x: "elm.padding.icon.right";
4847                   to_y: "elm.text.1";
4848                }
4849                rel2 {
4850                   relative: 0.0 0.0;
4851                   to_x: "elm.padding.right";
4852                   to_y: "elm.padding.bottom";
4853                }
4854                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
4855                text {
4856                   font: "SLP:style=Medium";
4857                   size: GENLIST_FONT_32_INC;
4858                   min: 0 1;
4859                   align: 0.0 0.5;
4860                   text_class: "slp_medium";
4861                }
4862             }
4863             description { state: "selected" 0.0;
4864                inherit: "default" 0.0;
4865                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
4866             }
4867             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
4868             GENLIST_DESCRIPTION_FLIP_ENABLED
4869          }
4870          GENLIST_PART_FLIP
4871          GENLIST_PART_DISCLIP
4872       }
4873       programs {
4874          // signal: elm,state,%s,active
4875          //   a "check" item named %s went active
4876          // signal: elm,state,%s,passive
4877          //   a "check" item named %s went passive
4878          // default is passive
4879          program { name: "go_active";
4880             signal: "elm,state,selected";
4881             source: "elm";
4882             action: STATE_SET "selected" 0.0;
4883             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
4884             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4885          }
4886          program { name: "go_passive";
4887             signal: "elm,state,unselected";
4888             source: "elm";
4889             action: STATE_SET "default" 0.0;
4890             target: "bg_image";
4891             target: "elm.text.1";
4892             target: "elm.text.2";
4893             transition: LINEAR 0.1;
4894          }
4895          program { name: "go_disabled";
4896             signal: "elm,state,disabled";
4897             source: "elm";
4898             action: STATE_SET "disabled" 0.0;
4899             target: "disclip";
4900          }
4901          program { name: "go_enabled";
4902             signal: "elm,state,enabled";
4903             source: "elm";
4904             action: STATE_SET "default" 0.0;
4905             target: "disclip";
4906          }
4907          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4908          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4909       }
4910    }
4911
4912    group { name: "elm/genlist/item_compress/2text.1icon.4.tb/default";
4913       inherit: "elm/genlist/item/2text.1icon.4/default";
4914       parts {
4915          part { name: "elm.text.1";
4916             clip_to: "disclip";
4917             type: TEXTBLOCK;
4918             mouse_events: 0;
4919             scale: 1;
4920             description { state: "default" 0.0;
4921                min: 0 GENLIST_SIZE_61_INC;
4922                fixed: 0 1;
4923                rel1 {
4924                   relative: 1.0 1.0;
4925                   to_x: "elm.padding.icon.right";
4926                   to_y: "elm.padding.top";
4927                }
4928                rel2 {
4929                   relative: 0.0 1.0;
4930                   to_x: "elm.padding.right";
4931                   to_y: "elm.padding.top";
4932                }
4933                align: 0.0 0.0;
4934                text {
4935                   style: "genlist_style_list_main_text_unread";
4936                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
4937                   min: 0 1;
4938                   align: 0.0 0.5;
4939                   text_class: "list_item";
4940                }
4941             }
4942             description { state: "selected" 0.0;
4943                inherit: "default" 0.0;
4944                text.style: "genlist_style_list_main_text_focus";
4945             }
4946             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
4947             GENLIST_DESCRIPTION_FLIP_ENABLED
4948          }
4949          part { name: "elm.text.2";
4950             clip_to: "disclip";
4951             type: TEXTBLOCK;
4952             mouse_events: 0;
4953             scale: 1;
4954             description { state: "default" 0.0;
4955                rel1 {
4956                   relative: 1.0 1.0;
4957                   to_x: "elm.padding.icon.right";
4958                   to_y: "elm.text.1";
4959                }
4960                rel2 {
4961                   relative: 0.0 0.0;
4962                   to_x: "elm.padding.right";
4963                   to_y: "elm.padding.bottom";
4964                }
4965                align: 0.0 0.5;
4966                text {
4967                   style: "genlist_style_list_sub_text_default";
4968                   size: GENLIST_FONT_32_INC;
4969                   min: 0 1;
4970                   align: 0.0 0.5;
4971                }
4972             }
4973             description { state: "selected" 0.0;
4974                inherit: "default" 0.0;
4975                text.style: "genlist_style_list_sub_text_focus";
4976             }
4977             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
4978             GENLIST_DESCRIPTION_FLIP_ENABLED
4979          }
4980       }
4981    }
4982
4983 // 3.2.14
4984    group { name: "elm/genlist/item/3text.1icon.2/default";
4985       alias: "elm/genlist/item_odd/3text.1icon.2/default";
4986       alias: "elm/genlist/item_compress/3text.1icon.2/default";
4987       alias: "elm/genlist/item_compress_odd/3text.1icon.2/default";
4988       data.item: "stacking" "above";
4989       data.item: "selectraise" "on";
4990       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
4991       data.item: "contents" "elm.icon";
4992       data.item: "flips" "elm.flip.content";
4993       images {
4994          image: "00_list_bar_press_1x80.png" COMP;
4995       }
4996       parts {
4997          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4998          GENLIST_PART_BG_IMAGE
4999          GENLIST_PART_BOTTOM_LINE
5000          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5001          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5002          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5003          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5004          part { name: "elm.icon";
5005             clip_to: "disclip";
5006             type: SWALLOW;
5007             scale: 1;
5008             description { state: "default" 0.0;
5009                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5010                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5011                fixed: 1 1;
5012                rel1 {
5013                   relative: 1.0 1.0;
5014                   offset: 0 0;
5015                   to_x: "elm.padding.left";
5016                   to_y: "elm.padding.top";
5017                }
5018                rel2 {
5019                   relative: 1.0 0.0;
5020                   to_x: "elm.padding.left";
5021                   to_y: "elm.padding.bottom";
5022                }
5023                align: 0.0 0.5;
5024             }
5025             GENLIST_DESCRIPTION_FLIP_ENABLED
5026          }
5027          part { name: "elm.padding.icon.right";
5028             clip_to: "disclip";
5029             type: RECT;
5030             scale: 1;
5031             description { state: "default" 0.0;
5032                min: GENLIST_PADDING_16_INC 0;
5033                fixed: 1 0;
5034                rel1 {
5035                   relative: 1.0 0.0;
5036                   to_x: "elm.icon";
5037                }
5038                rel2.to_x: "elm.icon";
5039                align: 0.0 0.0;
5040                visible: 0;
5041             }
5042          }
5043          part { name: "elm.text.3";
5044             clip_to: "disclip";
5045             type: TEXT;
5046             mouse_events: 0;
5047             scale: 1;
5048             description { state: "default" 0.0;
5049                min: 0 GENLIST_SIZE_61_INC;
5050                max: GENLIST_SIZE_192_INC GENLIST_SIZE_61_INC;
5051                fixed: 0 1;
5052                rel1 {
5053                   relative: 0.0 1.0;
5054                   to_x: "elm.padding.left";
5055                   to_y: "elm.padding.top";
5056                }
5057                rel2 {
5058                   relative: 0.0 1.0;
5059                   to_x: "elm.padding.right";
5060                   to_y: "elm.padding.top";
5061                }
5062                align: 1.0 0.0;
5063                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
5064                text {
5065                   font: "SLP:style=Medium";
5066                   size: GENLIST_FONT_32_INC;
5067                   min: 0 1;
5068                   max: 1 0;
5069                   align: 1.0 0.5;
5070                   text_class: "slp_medium";
5071                }
5072             }
5073             description { state: "selected" 0.0;
5074                inherit: "default" 0.0;
5075                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
5076             }
5077             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5078             GENLIST_DESCRIPTION_FLIP_ENABLED
5079          }
5080          part { name: "elm.padding.text3.left";
5081             clip_to: "disclip";
5082             type: RECT;
5083             mouse_events: 0;
5084             scale: 1;
5085             description { state: "default" 0.0;
5086                min: GENLIST_ICON_SMALL_SIZE 0;
5087                fixed: 1 0;
5088                rel1.to_x: "elm.text.3";
5089                rel2 {
5090                   relative: 0.0 1.0;
5091                   to_x: "elm.text.3";
5092                }
5093                align: 1.0 0.5;
5094                visible: 0;
5095             }
5096          }
5097          part { name: "elm.text.1";
5098             clip_to: "disclip";
5099             type: TEXT;
5100             mouse_events: 0;
5101             scale: 1;
5102             description { state: "default" 0.0;
5103                rel1 {
5104                   relative: 1.0 1.0;
5105                   to_x: "elm.padding.icon.right";
5106                   to_y: "elm.padding.top";
5107                }
5108                rel2 {
5109                   relative: 0.0 1.0;
5110                   to_x: "elm.padding.text3.left";
5111                   to_y: "elm.text.3";
5112                }
5113                align: 0.0 0.5;
5114                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
5115                text {
5116                   font: "SLP:style=Roman";
5117                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
5118                   min: 0 1;
5119                   align: 0.0 0.5;
5120                   text_class: "list_item";
5121                }
5122             }
5123             description { state: "selected" 0.0;
5124                inherit: "default" 0.0;
5125                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
5126             }
5127             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5128             GENLIST_DESCRIPTION_FLIP_ENABLED
5129          }
5130          part { name: "elm.text.2";
5131             clip_to: "disclip";
5132             type: TEXT;
5133             mouse_events: 0;
5134             scale: 1;
5135             description { state: "default" 0.0;
5136                rel1 {
5137                   relative: 1.0 1.0;
5138                   to_x: "elm.padding.icon.right";
5139                   to_y: "elm.text.1";
5140                }
5141                rel2 {
5142                   relative: 0.0 0.0;
5143                   to_x: "elm.padding.right";
5144                   to_y: "elm.padding.bottom";
5145                }
5146                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
5147                text {
5148                   font: "SLP:style=Medium";
5149                   size: GENLIST_FONT_32_INC;
5150                   min: 0 1;
5151                   align: 0.0 0.5;
5152                   text_class: "slp_medium";
5153                }
5154             }
5155             description { state: "selected" 0.0;
5156                inherit: "default" 0.0;
5157                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
5158             }
5159             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5160             GENLIST_DESCRIPTION_FLIP_ENABLED
5161          }
5162          GENLIST_PART_FLIP
5163          GENLIST_PART_DISCLIP
5164       }
5165       programs {
5166          // signal: elm,state,%s,active
5167          //   a "check" item named %s went active
5168          // signal: elm,state,%s,passive
5169          //   a "check" item named %s went passive
5170          // default is passive
5171          program { name: "go_active";
5172             signal: "elm,state,selected";
5173             source: "elm";
5174             action: STATE_SET "selected" 0.0;
5175             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_3TEXT
5176             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5177          }
5178          program { name: "go_passive";
5179             signal: "elm,state,unselected";
5180             source: "elm";
5181             action: STATE_SET "default" 0.0;
5182             target: "bg_image";
5183             target: "elm.text.1";
5184             target: "elm.text.2";
5185             target: "elm.text.3";
5186             transition: LINEAR 0.1;
5187          }
5188          program { name: "go_disabled";
5189             signal: "elm,state,disabled";
5190             source: "elm";
5191             action: STATE_SET "disabled" 0.0;
5192             target: "disclip";
5193          }
5194          program { name: "go_enabled";
5195             signal: "elm,state,enabled";
5196             source: "elm";
5197             action: STATE_SET "default" 0.0;
5198             target: "disclip";
5199          }
5200          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
5201          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5202       }
5203    }
5204
5205 // 3.2.15
5206    group { name: "elm/genlist/item/2text.1icon.8/default";
5207       alias: "elm/genlist/item_odd/2text.1icon.8/default";
5208       alias: "elm/genlist/item_compress/2text.1icon.8/default";
5209       alias: "elm/genlist/item_compress_odd/2text.1icon.8/default";
5210       data.item: "stacking" "above";
5211       data.item: "selectraise" "on";
5212       data.item: "texts" "elm.text.1 elm.text.2";
5213       data.item: "contents" "elm.icon";
5214       data.item: "flips" "elm.flip.content";
5215       images {
5216          image: "00_list_bar_press_1x80.png" COMP;
5217       }
5218       parts {
5219          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5220          GENLIST_PART_BG_IMAGE
5221          GENLIST_PART_BOTTOM_LINE
5222          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5223          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5224          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5225          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5226          part { name: "elm.icon";
5227             clip_to: "disclip";
5228             type: SWALLOW;
5229             scale: 1;
5230             description { state: "default" 0.0;
5231                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5232                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5233                fixed: 1 1;
5234                rel1 {
5235                   relative: 1.0 1.0;
5236                   to_x: "elm.padding.left";
5237                   to_y: "elm.padding.top";
5238                }
5239                rel2 {
5240                   relative: 1.0 0.0;
5241                   to_x: "elm.padding.left";
5242                   to_y: "elm.padding.bottom";
5243                }
5244                align: 0.0 0.5;
5245             }
5246             GENLIST_DESCRIPTION_FLIP_ENABLED
5247          }
5248          part { name: "elm.padding.icon.right";
5249             clip_to: "disclip";
5250             type: RECT;
5251             scale: 1;
5252             description { state: "default" 0.0;
5253                min: GENLIST_PADDING_16_INC 0;
5254                fixed: 1 0;
5255                rel1 {
5256                   relative: 1.0 0.0;
5257                   to_x: "elm.icon";
5258                }
5259                rel2.to_x: "elm.icon";
5260                align: 0.0 0.0;
5261                visible: 0;
5262             }
5263          }
5264          part { name: "elm.text.1";
5265             clip_to: "disclip";
5266             type: TEXT;
5267             mouse_events: 0;
5268             scale: 1;
5269             description { state: "default" 0.0;
5270                min: 0 GENLIST_SIZE_61_INC;
5271                fixed: 0 1;
5272                rel1 {
5273                   relative: 1.0 1.0;
5274                   to_x: "elm.padding.icon.right";
5275                   to_y: "elm.padding.top";
5276                }
5277                rel2 {
5278                   relative: 0.0 1.0;
5279                   to_x: "elm.padding.right";
5280                   to_y: "elm.padding.top";
5281                }
5282                align: 0.0 0.0;
5283                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
5284                text {
5285                   font: "SLP:style=Roman";
5286                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
5287                   min: 0 1;
5288                   align: 0.0 0.5;
5289                   text_class: "list_item";
5290                }
5291             }
5292             description { state: "selected" 0.0;
5293                inherit: "default" 0.0;
5294                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
5295             }
5296             GENLIST_DESCRIPTION_FLIP_ENABLED
5297          }
5298          part { name: "elm.text.2";
5299             clip_to: "disclip";
5300             type: TEXT;
5301             mouse_events: 0;
5302             scale: 1;
5303             description { state: "default" 0.0;
5304                rel1 {
5305                   relative: 1.0 1.0;
5306                   to_x: "elm.padding.icon.right";
5307                   to_y: "elm.text.1";
5308                }
5309                rel2 {
5310                   relative: 0.0 0.0;
5311                   to_x: "elm.padding.right";
5312                   to_y: "elm.padding.bottom";
5313                }
5314                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
5315                text {
5316                   font: "SLP:style=Medium";
5317                   size: GENLIST_FONT_32_INC;
5318                   min: 0 1;
5319                   align: 0.0 0.5;
5320                   text_class: "slp_medium";
5321                }
5322             }
5323             description { state: "selected" 0.0;
5324                inherit: "default" 0.0;
5325                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
5326             }
5327             GENLIST_DESCRIPTION_FLIP_ENABLED
5328          }
5329          GENLIST_PART_FLIP
5330          GENLIST_PART_DISCLIP
5331       }
5332       programs {
5333          // signal: elm,state,%s,active
5334          //   a "check" item named %s went active
5335          // signal: elm,state,%s,passive
5336          //   a "check" item named %s went passive
5337          // default is passive
5338          program { name: "go_active";
5339             signal: "elm,state,selected";
5340             source: "elm";
5341             action: STATE_SET "selected" 0.0;
5342             target: "bg_image";
5343             target: "elm.text.1";
5344             target: "elm.text.2";
5345             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5346          }
5347          program { name: "go_passive";
5348             signal: "elm,state,unselected";
5349             source: "elm";
5350             action: STATE_SET "default" 0.0;
5351             target: "bg_image";
5352             target: "elm.text.1";
5353             target: "elm.text.2";
5354             transition: LINEAR 0.1;
5355          }
5356          program { name: "go_disabled";
5357             signal: "elm,state,disabled";
5358             source: "elm";
5359             action: STATE_SET "disabled" 0.0;
5360             target: "disclip";
5361          }
5362          program { name: "go_enabled";
5363             signal: "elm,state,enabled";
5364             source: "elm";
5365             action: STATE_SET "default" 0.0;
5366             target: "disclip";
5367          }
5368          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
5369          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5370       }
5371    }
5372
5373 // 3.2.16
5374    group { name: "elm/genlist/item/2text.2icon.3/default";
5375       alias: "elm/genlist/item_odd/2text.2icon.3/default";
5376       alias: "elm/genlist/item_compress/2text.2icon.3/default";
5377       alias: "elm/genlist/item_compress_odd/2text.2icon.3/default";
5378       data.item: "stacking" "above";
5379       data.item: "selectraise" "on";
5380       data.item: "texts" "elm.text.1 elm.text.2";
5381       data.item: "contents" "elm.icon.1 elm.icon.2";
5382       data.item: "flips" "elm.flip.content";
5383       images {
5384          image: "00_list_bar_press_1x80.png" COMP;
5385       }
5386       parts {
5387          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5388          GENLIST_PART_BG_IMAGE
5389          GENLIST_PART_BOTTOM_LINE
5390          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5391          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5392          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5393          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5394          part { name: "elm.icon.1";
5395             clip_to: "disclip";
5396             type: SWALLOW;
5397             scale: 1;
5398             description { state: "default" 0.0;
5399                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5400                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5401                fixed: 1 1;
5402                rel1 {
5403                   relative: 1.0 1.0;
5404                   to_x: "elm.padding.left";
5405                   to_y: "elm.padding.top";
5406                }
5407                rel2 {
5408                   relative: 1.0 0.0;
5409                   to_x: "elm.padding.left";
5410                   to_y: "elm.padding.bottom";
5411                }
5412                align: 0.0 0.5;
5413             }
5414             GENLIST_DESCRIPTION_FLIP_ENABLED
5415          }
5416          part { name: "elm.padding.icon1.right";
5417             clip_to: "disclip";
5418             type: RECT;
5419             scale: 1;
5420             description { state: "default" 0.0;
5421                min: GENLIST_PADDING_16_INC 0;
5422                fixed: 1 0;
5423                rel1 {
5424                   relative: 1.0 0.0;
5425                   to_x: "elm.icon.1";
5426                }
5427                rel2.to_x: "elm.icon.1";
5428                align: 0.0 0.0;
5429                visible: 0;
5430             }
5431          }
5432          part { name: "elm.text.1";
5433             clip_to: "disclip";
5434             type: TEXT;
5435             mouse_events: 0;
5436             scale: 1;
5437             description { state: "default" 0.0;
5438                min: 0 GENLIST_SIZE_61_INC;
5439                fixed: 0 1;
5440                rel1 {
5441                   relative: 1.0 1.0;
5442                   to_x: "elm.padding.icon1.right";
5443                   to_y: "elm.padding.top";
5444                }
5445                rel2 {
5446                   relative: 0.0 1.0;
5447                   to_x: "elm.padding.icon2.left";
5448                   to_y: "elm.padding.top";
5449                }
5450                align: 0.0 0.0;
5451                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
5452                text {
5453                   font: "SLP:style=Roman";
5454                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
5455                   min: 0 1;
5456                   align: 0.0 0.5;
5457                   text_class: "list_item";
5458                }
5459             }
5460             description { state: "selected" 0.0;
5461                inherit: "default" 0.0;
5462                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
5463             }
5464             GENLIST_DESCRIPTION_FLIP_ENABLED
5465          }
5466          part { name: "elm.icon.2";
5467             clip_to: "disclip";
5468             type: SWALLOW;
5469             scale: 1;
5470             description { state: "default" 0.0;
5471                fixed: 1 1;
5472                rel1 {
5473                   relative: 0.0 1.0;
5474                   to_x: "elm.padding.right";
5475                   to_y: "elm.padding.top";
5476                }
5477                rel2 {
5478                   relative: 0.0 1.0;
5479                   to_x: "elm.padding.right";
5480                   to_y: "elm.text.1";
5481                }
5482                align: 1.0 0.5;
5483             }
5484             GENLIST_DESCRIPTION_FLIP_ENABLED
5485          }
5486          part { name: "elm.padding.icon2.left";
5487             clip_to: "disclip";
5488             type: RECT;
5489             scale: 1;
5490             description { state: "default" 0.0;
5491                min: GENLIST_PADDING_16_INC 0;
5492                fixed: 1 0;
5493                rel1 {
5494                   relative: 0.0 0.0;
5495                   to_x: "elm.icon.2";
5496                }
5497                rel2.to_x: "elm.icon.2";
5498                align: 1.0 0.0;
5499                visible: 0;
5500             }
5501          }
5502          part { name: "elm.text.2";
5503             clip_to: "disclip";
5504             type: TEXT;
5505             mouse_events: 0;
5506             scale: 1;
5507             description { state: "default" 0.0;
5508                rel1 {
5509                   relative: 1.0 1.0;
5510                   to_x: "elm.padding.icon1.right";
5511                   to_y: "elm.text.1";
5512                }
5513                rel2 {
5514                   relative: 0.0 0.0;
5515                   to_x: "elm.padding.icon2.left";
5516                   to_y: "elm.padding.bottom";
5517                }
5518                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
5519                text {
5520                   font: "SLP:style=Medium";
5521                   size: GENLIST_FONT_32_INC;
5522                   min: 0 1;
5523                   align: 0.0 0.5;
5524                   text_class: "slp_medium";
5525                }
5526             }
5527             description { state: "selected" 0.0;
5528                inherit: "default" 0.0;
5529                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
5530             }
5531             GENLIST_DESCRIPTION_FLIP_ENABLED
5532          }
5533          GENLIST_PART_FLIP
5534          GENLIST_PART_DISCLIP
5535       }
5536       programs {
5537          // signal: elm,state,%s,active
5538          //   a "check" item named %s went active
5539          // signal: elm,state,%s,passive
5540          //   a "check" item named %s went passive
5541          // default is passive
5542          program { name: "go_active";
5543             signal: "elm,state,selected";
5544             source: "elm";
5545             action: STATE_SET "selected" 0.0;
5546             target: "bg_image";
5547             target: "elm.text.1";
5548             target: "elm.text.2";
5549             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5550          }
5551          program { name: "go_passive";
5552             signal: "elm,state,unselected";
5553             source: "elm";
5554             action: STATE_SET "default" 0.0;
5555             target: "bg_image";
5556             target: "elm.text.1";
5557             target: "elm.text.2";
5558             transition: LINEAR 0.1;
5559          }
5560          program { name: "go_disabled";
5561             signal: "elm,state,disabled";
5562             source: "elm";
5563             action: STATE_SET "disabled" 0.0;
5564             target: "disclip";
5565          }
5566          program { name: "go_enabled";
5567             signal: "elm,state,enabled";
5568             source: "elm";
5569             action: STATE_SET "default" 0.0;
5570             target: "disclip";
5571          }
5572          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
5573          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5574       }
5575    }
5576
5577    group { name: "elm/genlist/item_compress/2text.2icon.3.tb/default";
5578       inherit: "elm/genlist/item/2text.2icon.3/default";
5579       parts {
5580          part { name: "elm.text.2";
5581             clip_to: "disclip";
5582             type: TEXTBLOCK;
5583             mouse_events: 0;
5584             scale: 1;
5585             description { state: "default" 0.0;
5586                rel1 {
5587                   relative: 1.0 1.0;
5588                   to_x: "elm.padding.icon1.right";
5589                   to_y: "elm.text.1";
5590                }
5591                rel2 {
5592                   relative: 0.0 0.0;
5593                   to_x: "elm.padding.icon2.left";
5594                   to_y: "elm.padding.bottom";
5595                }
5596                align: 0.0 0.5;
5597                text {
5598                   style: "genlist_style_list_sub_text_default";
5599                   min: 0 1;
5600                   align: 0.0 0.5;
5601                }
5602             }
5603             description { state: "selected" 0.0;
5604                inherit: "default" 0.0;
5605                // FIXME: Why color textblock of is not changed by text.style?
5606                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
5607                text.style: "genlist_style_list_sub_text_focus";
5608             }
5609             GENLIST_DESCRIPTION_FLIP_ENABLED
5610          }
5611       }
5612    }
5613
5614 // 3.2.17
5615    group { name: "elm/genlist/item/2text.2icon.4/default";
5616       alias: "elm/genlist/item_odd/2text.2icon.4/default";
5617       alias: "elm/genlist/item_compress/2text.2icon.4/default";
5618       alias: "elm/genlist/item_compress_odd/2text.2icon.4/default";
5619       data.item: "stacking" "above";
5620       data.item: "selectraise" "on";
5621       data.item: "texts" "elm.text.1 elm.text.2";
5622       data.item: "contents" "elm.icon.1 elm.icon.2";
5623       data.item: "flips" "elm.flip.content";
5624       images {
5625          image: "00_list_bar_press_1x80.png" COMP;
5626       }
5627       parts {
5628          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5629          GENLIST_PART_BG_IMAGE
5630          GENLIST_PART_BOTTOM_LINE
5631          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5632          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5633          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5634          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5635          part { name: "elm.icon.1";
5636             clip_to: "disclip";
5637             type: SWALLOW;
5638             scale: 1;
5639             description { state: "default" 0.0;
5640                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5641                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5642                fixed: 1 1;
5643                rel1 {
5644                   relative: 1.0 1.0;
5645                   to_x: "elm.padding.left";
5646                   to_y: "elm.padding.top";
5647                }
5648                rel2 {
5649                   relative: 1.0 0.0;
5650                   to_x: "elm.padding.left";
5651                   to_y: "elm.padding.bottom";
5652                }
5653                align: 0.0 0.5;
5654             }
5655             GENLIST_DESCRIPTION_FLIP_ENABLED
5656          }
5657          part { name: "elm.padding.icon1.right";
5658             clip_to: "disclip";
5659             type: RECT;
5660             scale: 1;
5661             description { state: "default" 0.0;
5662                min: GENLIST_PADDING_16_INC 0;
5663                fixed: 1 0;
5664                rel1 {
5665                   relative: 1.0 0.0;
5666                   to_x: "elm.icon.1";
5667                }
5668                rel2.to_x: "elm.icon.1";
5669                align: 0.0 0.0;
5670                visible: 0;
5671             }
5672          }
5673          part { name: "elm.icon.2";
5674             clip_to: "disclip";
5675             type: SWALLOW;
5676             scale: 1;
5677             description { state: "default" 0.0;
5678                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5679                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5680                fixed: 1 1;
5681                rel1 {
5682                   relative: 0.0 1.0;
5683                   to_x: "elm.padding.right";
5684                   to_y: "elm.padding.top";
5685                }
5686                rel2 {
5687                   relative: 0.0 0.0;
5688                   to_x: "elm.padding.right";
5689                   to_y: "elm.padding.bottom";
5690                }
5691                align: 1.0 0.5;
5692             }
5693             GENLIST_DESCRIPTION_FLIP_ENABLED
5694          }
5695          part { name: "elm.padding.icon2.left";
5696             clip_to: "disclip";
5697             type: RECT;
5698             scale: 1;
5699             description { state: "default" 0.0;
5700                min: GENLIST_PADDING_16_INC 0;
5701                fixed: 1 0;
5702                rel1.to_x: "elm.icon.2";
5703                rel2 {
5704                   relative: 0.0 1.0;
5705                   to_x: "elm.icon.2";
5706                }
5707                align: 1.0 0.0;
5708                visible: 0;
5709             }
5710          }
5711          part { name: "elm.text.1";
5712             clip_to: "disclip";
5713             type: TEXT;
5714             mouse_events: 0;
5715             scale: 1;
5716             description { state: "default" 0.0;
5717                min: 0 GENLIST_SIZE_61_INC;
5718                fixed: 0 1;
5719                rel1 {
5720                   relative: 1.0 1.0;
5721                   to_x: "elm.padding.icon1.right";
5722                   to_y: "elm.padding.top";
5723                }
5724                rel2 {
5725                   relative: 0.0 1.0;
5726                   to_x: "elm.padding.icon2.left";
5727                   to_y: "elm.padding.top";
5728                }
5729                align: 0.0 0.0;
5730                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
5731                text {
5732                   font: "SLP:style=Roman";
5733                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
5734                   min: 0 1;
5735                   align: 0.0 0.5;
5736                   text_class: "list_item";
5737                }
5738             }
5739             description { state: "selected" 0.0;
5740                inherit: "default" 0.0;
5741                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
5742             }
5743             GENLIST_DESCRIPTION_FLIP_ENABLED
5744          }
5745          part { name: "elm.text.2";
5746             clip_to: "disclip";
5747             type: TEXT;
5748             mouse_events: 0;
5749             scale: 1;
5750             description { state: "default" 0.0;
5751                rel1 {
5752                   relative: 1.0 1.0;
5753                   to_x: "elm.padding.icon1.right";
5754                   to_y: "elm.text.1";
5755                }
5756                rel2 {
5757                   relative: 0.0 0.0;
5758                   to_x: "elm.padding.icon2.left";
5759                   to_y: "elm.padding.bottom";
5760                }
5761                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
5762                text {
5763                   font: "SLP:style=Medium";
5764                   size: GENLIST_FONT_32_INC;
5765                   min: 0 1;
5766                   align: 0.0 0.5;
5767                   text_class: "slp_medium";
5768                }
5769             }
5770             description { state: "selected" 0.0;
5771                inherit: "default" 0.0;
5772                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
5773             }
5774             GENLIST_DESCRIPTION_FLIP_ENABLED
5775          }
5776          GENLIST_PART_FLIP
5777          GENLIST_PART_DISCLIP
5778       }
5779       programs {
5780          // signal: elm,state,%s,active
5781          //   a "check" item named %s went active
5782          // signal: elm,state,%s,passive
5783          //   a "check" item named %s went passive
5784          // default is passive
5785          program { name: "go_active";
5786             signal: "elm,state,selected";
5787             source: "elm";
5788             action: STATE_SET "selected" 0.0;
5789             target: "bg_image";
5790             target: "elm.text.1";
5791             target: "elm.text.2";
5792             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5793          }
5794          program { name: "go_passive";
5795             signal: "elm,state,unselected";
5796             source: "elm";
5797             action: STATE_SET "default" 0.0;
5798             target: "bg_image";
5799             target: "elm.text.1";
5800             target: "elm.text.2";
5801             transition: LINEAR 0.1;
5802          }
5803          program { name: "go_disabled";
5804             signal: "elm,state,disabled";
5805             source: "elm";
5806             action: STATE_SET "disabled" 0.0;
5807             target: "disclip";
5808          }
5809          program { name: "go_enabled";
5810             signal: "elm,state,enabled";
5811             source: "elm";
5812             action: STATE_SET "default" 0.0;
5813             target: "disclip";
5814          }
5815          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
5816          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5817       }
5818    }
5819
5820    group { name: "elm/genlist/item_compress/2text.2icon.4.tb/default";
5821       inherit: "elm/genlist/item/2text.2icon.4/default";
5822       parts {
5823          part { name: "elm.text.1";
5824             clip_to: "disclip";
5825             type: TEXTBLOCK;
5826             mouse_events: 0;
5827             scale: 1;
5828             description { state: "default" 0.0;
5829                min: 0 GENLIST_SIZE_61_INC;
5830                fixed: 0 1;
5831                rel1 {
5832                   relative: 1.0 1.0;
5833                   to_x: "elm.padding.icon1.right";
5834                   to_y: "elm.padding.top";
5835                }
5836                rel2 {
5837                   relative: 0.0 1.0;
5838                   to_x: "elm.padding.icon2.left";
5839                   to_y: "elm.padding.top";
5840                }
5841                align: 0.0 0.0;
5842                text {
5843                   style: "genlist_style_list_main_text_unread";
5844                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
5845                   min: 0 1;
5846                   align: 0.0 0.5;
5847                   text_class: "list_item";
5848                }
5849             }
5850             description { state: "selected" 0.0;
5851                inherit: "default" 0.0;
5852                text.style: "genlist_style_list_main_text_focus";
5853             }
5854             GENLIST_DESCRIPTION_FLIP_ENABLED
5855          }
5856          part { name: "elm.text.2";
5857             clip_to: "disclip";
5858             type: TEXTBLOCK;
5859             mouse_events: 0;
5860             scale: 1;
5861             description { state: "default" 0.0;
5862                rel1 {
5863                   relative: 1.0 1.0;
5864                   to_x: "elm.padding.icon1.right";
5865                   to_y: "elm.text.1";
5866                }
5867                rel2 {
5868                   relative: 0.0 0.0;
5869                   to_x: "elm.padding.icon2.left";
5870                   to_y: "elm.padding.bottom";
5871                }
5872                text {
5873                   style: "genlist_style_list_main_text_unread";
5874                   size: GENLIST_FONT_32_INC;
5875                   min: 0 1;
5876                   align: 0.0 0.5;
5877                   text_class: "slp_medium";
5878                }
5879             }
5880             description { state: "selected" 0.0;
5881                inherit: "default" 0.0;
5882                text.style: "genlist_style_list_main_text_focus";
5883             }
5884             GENLIST_DESCRIPTION_FLIP_ENABLED
5885          }
5886       }
5887    }
5888
5889 // 3.2.18
5890    group { name: "elm/genlist/item/2text.1icon.9/default";
5891       alias: "elm/genlist/item_odd/2text.1icon.9/default";
5892       alias: "elm/genlist/item_compress/2text.1icon.9/default";
5893       alias: "elm/genlist/item_compress_odd/2text.1icon.9/default";
5894       data.item: "stacking" "above";
5895       data.item: "selectraise" "on";
5896       data.item: "texts" "elm.text.1 elm.text.2";
5897       data.item: "contents" "elm.icon";
5898       data.item: "flips" "elm.flip.content";
5899       images {
5900          image: "00_list_bar_press_1x80.png" COMP;
5901       }
5902       parts {
5903          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5904          GENLIST_PART_BG_IMAGE
5905          GENLIST_PART_BOTTOM_LINE
5906          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5907          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5908          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5909          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5910          part { name: "elm.icon";
5911             clip_to: "disclip";
5912             type: SWALLOW;
5913             scale: 1;
5914             description { state: "default" 0.0;
5915                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
5916                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
5917                fixed: 1 1;
5918                rel1 {
5919                   relative: 1.0 1.0;
5920                   to_x: "elm.padding.left";
5921                   to_y: "elm.padding.top";
5922                }
5923                rel2 {
5924                   relative: 1.0 0.0;
5925                   to_x: "elm.padding.left";
5926                   to_y: "elm.padding.bottom";
5927                }
5928                align: 0.0 0.5;
5929             }
5930             GENLIST_DESCRIPTION_FLIP_ENABLED
5931          }
5932          part { name: "elm.padding.icon.right";
5933             clip_to: "disclip";
5934             type: RECT;
5935             scale: 1;
5936             description { state: "default" 0.0;
5937                min: GENLIST_PADDING_16_INC 0;
5938                fixed: 1 0;
5939                rel1 {
5940                   relative: 1.0 0.0;
5941                   to_x: "elm.icon";
5942                }
5943                rel2.to_x: "elm.icon";
5944                align: 0.0 0.0;
5945                visible: 0;
5946             }
5947          }
5948          part { name: "elm.text.1";
5949             clip_to: "disclip";
5950             type: TEXT;
5951             mouse_events: 0;
5952             scale: 1;
5953             description { state: "default" 0.0;
5954                min: 0 GENLIST_SIZE_61_INC;
5955                fixed: 0 1;
5956                rel1 {
5957                   relative: 1.0 1.0;
5958                   to_x: "elm.padding.icon.right";
5959                   to_y: "elm.padding.top";
5960                }
5961                rel2 {
5962                   relative: 0.0 1.0;
5963                   to_x: "elm.padding.right";
5964                   to_y: "elm.padding.top";
5965                }
5966                align: 0.0 0.0;
5967                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
5968                text {
5969                   font: "SLP:style=Roman";
5970                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
5971                   min: 0 1;
5972                   align: 0.0 0.5;
5973                   text_class: "list_item";
5974                }
5975             }
5976             description { state: "selected" 0.0;
5977                inherit: "default" 0.0;
5978                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
5979             }
5980             GENLIST_DESCRIPTION_FLIP_ENABLED
5981          }
5982          part { name: "elm.text.2";
5983             clip_to: "disclip";
5984             type: TEXT;
5985             mouse_events: 0;
5986             scale: 1;
5987             description { state: "default" 0.0;
5988                rel1 {
5989                   relative: 1.0 1.0;
5990                   to_x: "elm.padding.icon.right";
5991                   to_y: "elm.text.1";
5992                }
5993                rel2 {
5994                   relative: 0.0 0.0;
5995                   to_x: "elm.padding.right";
5996                   to_y: "elm.padding.bottom";
5997                }
5998                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
5999                text {
6000                   font: "SLP:style=Medium";
6001                   size: GENLIST_FONT_32_INC;
6002                   min: 0 1;
6003                   align: 0.0 0.5;
6004                   text_class: "slp_medium";
6005                }
6006             }
6007             description { state: "selected" 0.0;
6008                inherit: "default" 0.0;
6009                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
6010             }
6011             GENLIST_DESCRIPTION_FLIP_ENABLED
6012          }
6013          GENLIST_PART_FLIP
6014          GENLIST_PART_DISCLIP
6015       }
6016       programs {
6017          // signal: elm,state,%s,active
6018          //   a "check" item named %s went active
6019          // signal: elm,state,%s,passive
6020          //   a "check" item named %s went passive
6021          // default is passive
6022          program { name: "go_active";
6023             signal: "elm,state,selected";
6024             source: "elm";
6025             action: STATE_SET "selected" 0.0;
6026             target: "bg_image";
6027             target: "elm.text.1";
6028             target: "elm.text.2";
6029             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6030          }
6031          program { name: "go_passive";
6032             signal: "elm,state,unselected";
6033             source: "elm";
6034             action: STATE_SET "default" 0.0;
6035             target: "bg_image";
6036             target: "elm.text.1";
6037             target: "elm.text.2";
6038             transition: LINEAR 0.1;
6039          }
6040          program { name: "go_disabled";
6041             signal: "elm,state,disabled";
6042             source: "elm";
6043             action: STATE_SET "disabled" 0.0;
6044             target: "disclip";
6045          }
6046          program { name: "go_enabled";
6047             signal: "elm,state,enabled";
6048             source: "elm";
6049             action: STATE_SET "default" 0.0;
6050             target: "disclip";
6051          }
6052          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
6053          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6054       }
6055    }
6056
6057 // 2.4.2.18
6058    group { name: "elm/genlist/item_compress/multiline/dialogue/2text/default";
6059       alias: "elm/genlist/item_compress_odd/multiline/dialogue/2text/default";
6060       data.item: "stacking" "above";
6061       data.item: "selectraise" "on";
6062       data.item: "texts" "elm.text.1 elm.text.2";
6063       parts {
6064          part { name: "base";
6065             type: RECT;
6066             repeat_events: 1;
6067             description { state: "default" 0.0;
6068                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
6069             }
6070          }
6071          GENLIST_PART_DIALOGUE_BG_IMAGE
6072          GENLIST_PART_BOTTOM_LINE
6073          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
6074          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
6075          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
6076          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6077          GENLIST_PART_DIALOGUE_ITEM
6078          GENLIST_PART_DIALOGUE_RIGHT_LINE
6079          part { name: "elm.text.1";
6080             clip_to: "disclip";
6081             type: TEXT;
6082             mouse_events: 0;
6083             scale: 1;
6084             description { state: "default" 0.0;
6085                min: 0 GENLIST_SIZE_48_INC;
6086                fixed: 0 1;
6087                rel1 {
6088                   relative: 1.0 1.0;
6089                   to_x: "elm.padding.left";
6090                   to_y: "elm.padding.top";
6091                }
6092                rel2 {
6093                   relative: 0.0 1.0;
6094                   to_x: "elm.padding.right";
6095                   to_y: "elm.padding.top";
6096                }
6097                align: 0.0 0.0;
6098                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
6099                text {
6100                   font: "SLP:style=Roman";
6101                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
6102                   min: 0 1;
6103                   align: 0.0 0.5;
6104                   text_class: "list_item";
6105                }
6106             }
6107             description { state: "selected" 0.0;
6108                inherit: "default" 0.0;
6109                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
6110             }
6111          }
6112          part { name: "elm.text.2";
6113             clip_to: "disclip";
6114             type: TEXTBLOCK;
6115             mouse_events: 0;
6116             scale: 1;
6117             description { state: "default" 0.0;
6118                rel1 {
6119                   relative: 1.0 1.0;
6120                   to_x: "elm.padding.left";
6121                   to_y: "elm.text.1";
6122                }
6123                rel2 {
6124                   relative: 0.0 0.0;
6125                   to_x: "elm.padding.right";
6126                   to_y: "elm.padding.bottom";
6127                }
6128                text {
6129                   style: "genlist_style_flexible_text_sub";
6130                   min: 0 1;
6131                   align: 0.0 0.5;
6132                }
6133             }
6134          }
6135          GENLIST_PART_DISCLIP
6136       }
6137       programs {
6138          // signal: elm,state,%s,active
6139          //   a "check" item named %s went active
6140          // signal: elm,state,%s,passive
6141          //   a "check" item named %s went passive
6142          // default is passive
6143          program { name: "go_active";
6144             signal: "elm,state,selected";
6145             source: "elm";
6146             action: STATE_SET "selected" 0.0;
6147             target: "bg_image";
6148             target: "elm.text.1";
6149             target: "elm.text.2";
6150             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6151          }
6152          program { name: "go_passive";
6153             signal: "elm,state,unselected";
6154             source: "elm";
6155             action: STATE_SET "default" 0.0;
6156             target: "bg_image";
6157             target: "elm.text.1";
6158             target: "elm.text.2";
6159             transition: LINEAR 0.1;
6160          }
6161          program { name: "go_disabled";
6162             signal: "elm,state,disabled";
6163             source: "elm";
6164             action: STATE_SET "disabled" 0.0;
6165             target: "disclip";
6166          }
6167          program { name: "go_enabled";
6168             signal: "elm,state,enabled";
6169             source: "elm";
6170             action: STATE_SET "default" 0.0;
6171             target: "disclip";
6172          }
6173          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6174       }
6175    }
6176
6177 // 3.2.19
6178    group { name: "elm/genlist/item/2text.2icon.7/default";
6179       alias: "elm/genlist/item_odd/2text.2icon.7/default";
6180       alias: "elm/genlist/item_compress/2text.2icon.7/default";
6181       alias: "elm/genlist/item_compress_odd/2text.2icon.7/default";
6182       data.item: "stacking" "above";
6183       data.item: "selectraise" "on";
6184       data.item: "texts" "elm.text.1 elm.text.2";
6185       data.item: "contents" "elm.icon.1 elm.icon.2";
6186       data.item: "flips" "elm.flip.content";
6187       images {
6188          image: "00_list_bar_press_1x80.png" COMP;
6189       }
6190       parts {
6191          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6192          GENLIST_PART_BG_IMAGE
6193          GENLIST_PART_BOTTOM_LINE
6194          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6195          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6196          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
6197          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6198          part { name: "elm.icon.1";
6199             clip_to: "disclip";
6200             type: SWALLOW;
6201             scale: 1;
6202             description { state: "default" 0.0;
6203                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6204                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6205                fixed: 1 1;
6206                rel1 {
6207                   relative: 1.0 1.0;
6208                   to_x: "elm.padding.left";
6209                   to_y: "elm.padding.top";
6210                }
6211                rel2 {
6212                   relative: 1.0 0.0;
6213                   to_x: "elm.padding.left";
6214                   to_y: "elm.padding.bottom";
6215                }
6216                align: 0.0 0.5;
6217             }
6218             GENLIST_DESCRIPTION_FLIP_ENABLED
6219          }
6220          part { name: "elm.padding.icon1.right";
6221             clip_to: "disclip";
6222             type: RECT;
6223             scale: 1;
6224             description { state: "default" 0.0;
6225                min: GENLIST_PADDING_16_INC 0;
6226                fixed: 1 0;
6227                rel1 {
6228                   relative: 1.0 0.0;
6229                   to_x: "elm.icon.1";
6230                }
6231                rel2.to_x: "elm.icon.1";
6232                align: 0.0 0.0;
6233                visible: 0;
6234             }
6235          }
6236          part { name: "elm.icon.2";
6237             clip_to: "disclip";
6238             type: SWALLOW;
6239             scale: 1;
6240             description { state: "default" 0.0;
6241                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6242                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6243                fixed: 1 1;
6244                rel1 {
6245                   relative: 0.0 1.0;
6246                   to_x: "elm.padding.right";
6247                   to_y: "elm.padding.top";
6248                }
6249                rel2 {
6250                   relative: 0.0 0.0;
6251                   to_x: "elm.padding.right";
6252                   to_y: "elm.padding.bottom";
6253                }
6254                align: 1.0 0.5;
6255             }
6256             GENLIST_DESCRIPTION_FLIP_ENABLED
6257          }
6258          part { name: "elm.padding.icon2.left";
6259             clip_to: "disclip";
6260             type: RECT;
6261             scale: 1;
6262             description { state: "default" 0.0;
6263                min: GENLIST_PADDING_16_INC 0;
6264                fixed: 1 0;
6265                rel1.to_x: "elm.icon.2";
6266                rel2 {
6267                   relative: 0.0 1.0;
6268                   to_x: "elm.icon.2";
6269                }
6270                align: 1.0 0.0;
6271                visible: 0;
6272             }
6273          }
6274          part { name: "elm.text.1";
6275             clip_to: "disclip";
6276             type: TEXT;
6277             mouse_events: 0;
6278             scale: 1;
6279             description { state: "default" 0.0;
6280                min: 0 GENLIST_SIZE_61_INC;
6281                fixed: 0 1;
6282                rel1 {
6283                   relative: 1.0 1.0;
6284                   to_x: "elm.padding.icon1.right";
6285                   to_y: "elm.padding.top";
6286                }
6287                rel2 {
6288                   relative: 0.0 1.0;
6289                   to_x: "elm.padding.icon2.left";
6290                   to_y: "elm.padding.top";
6291                }
6292                align: 0.0 0.0;
6293                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
6294                text {
6295                   font: "SLP:style=Roman";
6296                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
6297                   min: 0 1;
6298                   align: 0.0 0.5;
6299                   text_class: "list_item";
6300                }
6301             }
6302             description { state: "selected" 0.0;
6303                inherit: "default" 0.0;
6304                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
6305             }
6306             GENLIST_DESCRIPTION_FLIP_ENABLED
6307          }
6308          part { name: "elm.text.2";
6309             clip_to: "disclip";
6310             type: TEXT;
6311             mouse_events: 0;
6312             scale: 1;
6313             description { state: "default" 0.0;
6314                rel1 {
6315                   relative: 1.0 1.0;
6316                   to_x: "elm.padding.icon1.right";
6317                   to_y: "elm.text.1";
6318                }
6319                rel2 {
6320                   relative: 0.0 0.0;
6321                   to_x: "elm.padding.icon2.left";
6322                   to_y: "elm.padding.bottom";
6323                }
6324                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
6325                text {
6326                   font: "SLP:style=Medium";
6327                   size: GENLIST_FONT_32_INC;
6328                   min: 0 1;
6329                   align: 0.0 0.5;
6330                   text_class: "slp_medium";
6331                }
6332             }
6333             description { state: "selected" 0.0;
6334                inherit: "default" 0.0;
6335                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
6336             }
6337             GENLIST_DESCRIPTION_FLIP_ENABLED
6338          }
6339          GENLIST_PART_FLIP
6340          GENLIST_PART_DISCLIP
6341       }
6342       programs {
6343          // signal: elm,state,%s,active
6344          //   a "check" item named %s went active
6345          // signal: elm,state,%s,passive
6346          //   a "check" item named %s went passive
6347          // default is passive
6348          program { name: "go_active";
6349             signal: "elm,state,selected";
6350             source: "elm";
6351             action: STATE_SET "selected" 0.0;
6352             target: "bg_image";
6353             target: "elm.text.1";
6354             target: "elm.text.2";
6355             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6356          }
6357          program { name: "go_passive";
6358             signal: "elm,state,unselected";
6359             source: "elm";
6360             action: STATE_SET "default" 0.0;
6361             target: "bg_image";
6362             target: "elm.text.1";
6363             target: "elm.text.2";
6364             transition: LINEAR 0.1;
6365          }
6366          program { name: "go_disabled";
6367             signal: "elm,state,disabled";
6368             source: "elm";
6369             action: STATE_SET "disabled" 0.0;
6370             target: "disclip";
6371          }
6372          program { name: "go_enabled";
6373             signal: "elm,state,enabled";
6374             source: "elm";
6375             action: STATE_SET "default" 0.0;
6376             target: "disclip";
6377          }
6378          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
6379          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6380       }
6381    }
6382
6383 // 3.2.20
6384    group { name: "elm/genlist/item/2text.2icon.5/default";
6385       alias: "elm/genlist/item_odd/2text.2icon.5/default";
6386       alias: "elm/genlist/item_compress/2text.2icon.5/default";
6387       alias: "elm/genlist/item_compress_odd/2text.2icon.5/default";
6388       data.item: "stacking" "above";
6389       data.item: "selectraise" "on";
6390       data.item: "texts" "elm.text.1 elm.text.2";
6391       data.item: "contents" "elm.icon.1 elm.icon.2";
6392       data.item: "flips" "elm.flip.content";
6393       images {
6394          image: "00_list_bar_press_1x80.png" COMP;
6395       }
6396       parts {
6397          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6398          GENLIST_PART_BG_IMAGE
6399          GENLIST_PART_BOTTOM_LINE
6400          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6401          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6402          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
6403          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6404          part { name: "elm.icon.1";
6405             clip_to: "disclip";
6406             type: SWALLOW;
6407             scale: 1;
6408             description { state: "default" 0.0;
6409                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6410                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6411                fixed: 1 1;
6412                rel1 {
6413                   relative: 1.0 1.0;
6414                   to_x: "elm.padding.left";
6415                   to_y: "elm.padding.top";
6416                }
6417                rel2 {
6418                   relative: 1.0 0.0;
6419                   to_x: "elm.padding.left";
6420                   to_y: "elm.padding.bottom";
6421                }
6422                align: 0.0 0.5;
6423             }
6424             GENLIST_DESCRIPTION_FLIP_ENABLED
6425          }
6426          part { name: "elm.padding.icon1.right";
6427             clip_to: "disclip";
6428             type: RECT;
6429             scale: 1;
6430             description { state: "default" 0.0;
6431                min: GENLIST_PADDING_16_INC 0;
6432                fixed: 1 0;
6433                rel1 {
6434                   relative: 1.0 0.0;
6435                   to_x: "elm.icon.1";
6436                }
6437                rel2.to_x: "elm.icon.1";
6438                align: 0.0 0.0;
6439                visible: 0;
6440             }
6441          }
6442          part { name: "elm.icon.2";
6443             clip_to: "disclip";
6444             type: SWALLOW;
6445             scale: 1;
6446             description { state: "default" 0.0;
6447                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6448                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6449                fixed: 1 1;
6450                rel1 {
6451                   relative: 1.0 1.0;
6452                   to_x: "elm.padding.icon1.right";
6453                   to_y: "elm.padding.top";
6454                }
6455                rel2 {
6456                   relative: 1.0 0.0;
6457                   to_x: "elm.padding.icon1.right";
6458                   to_y: "elm.padding.bottom";
6459                }
6460                align: 0.0 0.5;
6461             }
6462             GENLIST_DESCRIPTION_FLIP_ENABLED
6463          }
6464          part { name: "elm.padding.icon2.right";
6465             clip_to: "disclip";
6466             type: RECT;
6467             scale: 1;
6468             description { state: "default" 0.0;
6469                min: GENLIST_PADDING_16_INC 0;
6470                fixed: 1 0;
6471                rel1 {
6472                   relative: 1.0 0.0;
6473                   to_x: "elm.icon.2";
6474                }
6475                rel2.to_x: "elm.icon.2";
6476                align: 0.0 0.0;
6477                visible: 0;
6478             }
6479          }
6480          part { name: "elm.text.1";
6481             clip_to: "disclip";
6482             type: TEXT;
6483             mouse_events: 0;
6484             scale: 1;
6485             description { state: "default" 0.0;
6486                min: 0 GENLIST_SIZE_61_INC;
6487                fixed: 0 1;
6488                rel1 {
6489                   relative: 1.0 1.0;
6490                   to_x: "elm.padding.icon2.right";
6491                   to_y: "elm.padding.top";
6492                }
6493                rel2 {
6494                   relative: 0.0 1.0;
6495                   to_x: "elm.padding.right";
6496                   to_y: "elm.padding.top";
6497                }
6498                align: 0.0 0.0;
6499                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
6500                text {
6501                   font: "SLP:style=Roman";
6502                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
6503                   min: 0 1;
6504                   align: 0.0 0.5;
6505                   text_class: "list_item";
6506                }
6507             }
6508             description { state: "selected" 0.0;
6509                inherit: "default" 0.0;
6510                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
6511             }
6512             GENLIST_DESCRIPTION_FLIP_ENABLED
6513          }
6514          part { name: "elm.text.2";
6515             clip_to: "disclip";
6516             type: TEXT;
6517             mouse_events: 0;
6518             scale: 1;
6519             description { state: "default" 0.0;
6520                rel1 {
6521                   relative: 1.0 1.0;
6522                   to_x: "elm.padding.icon2.right";
6523                   to_y: "elm.text.1";
6524                }
6525                rel2 {
6526                   relative: 0.0 0.0;
6527                   to_x: "elm.padding.right";
6528                   to_y: "elm.padding.bottom";
6529                }
6530                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
6531                text {
6532                   font: "SLP:style=Medium";
6533                   size: GENLIST_FONT_32_INC;
6534                   min: 0 1;
6535                   align: 0.0 0.5;
6536                   text_class: "slp_medium";
6537                }
6538             }
6539             description { state: "selected" 0.0;
6540                inherit: "default" 0.0;
6541                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
6542             }
6543             GENLIST_DESCRIPTION_FLIP_ENABLED
6544          }
6545          GENLIST_PART_FLIP
6546          GENLIST_PART_DISCLIP
6547       }
6548       programs {
6549          // signal: elm,state,%s,active
6550          //   a "check" item named %s went active
6551          // signal: elm,state,%s,passive
6552          //   a "check" item named %s went passive
6553          // default is passive
6554          program { name: "go_active";
6555             signal: "elm,state,selected";
6556             source: "elm";
6557             action: STATE_SET "selected" 0.0;
6558             target: "bg_image";
6559             target: "elm.text.1";
6560             target: "elm.text.2";
6561             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6562          }
6563          program { name: "go_passive";
6564             signal: "elm,state,unselected";
6565             source: "elm";
6566             action: STATE_SET "default" 0.0;
6567             target: "bg_image";
6568             target: "elm.text.1";
6569             target: "elm.text.2";
6570             transition: LINEAR 0.1;
6571          }
6572          program { name: "go_disabled";
6573             signal: "elm,state,disabled";
6574             source: "elm";
6575             action: STATE_SET "disabled" 0.0;
6576             target: "disclip";
6577          }
6578          program { name: "go_enabled";
6579             signal: "elm,state,enabled";
6580             source: "elm";
6581             action: STATE_SET "default" 0.0;
6582             target: "disclip";
6583          }
6584          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
6585          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6586       }
6587    }
6588
6589 // ???
6590    group { name: "elm/genlist/item/3text.5icon/default";
6591       alias: "elm/genlist/item_odd/3text.5icon/default";
6592       alias: "elm/genlist/item_compress/3text.5icon/default";
6593       alias: "elm/genlist/item_compress_odd/3text.5icon/default";
6594       data.item: "stacking" "above";
6595       data.item: "selectraise" "on";
6596       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
6597       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.swallow.colorbar";
6598       data.item: "flips" "elm.flip.content";
6599       images {
6600          image: "00_list_bar_press_1x80.png" COMP;
6601       }
6602       parts {
6603          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6604          GENLIST_PART_BG_IMAGE
6605          GENLIST_PART_BOTTOM_LINE
6606          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6607          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6608          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
6609          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6610          part { name: "elm.swallow.colorbar";
6611             clip_to: "disclip";
6612             type: SWALLOW;
6613             scale: 1;
6614             description { state: "default" 0.0;
6615                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
6616                fixed: 1 1;
6617                rel2.relative: 0.0 0.0;
6618                align: 0.0 0.0;
6619             }
6620          }
6621          part { name: "elm.text.3";
6622             clip_to: "disclip";
6623             type: TEXT;
6624             mouse_events: 0;
6625             scale: 1;
6626             description { state: "default" 0.0;
6627                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
6628                fixed: 1 1;
6629                rel1 {
6630                   relative: 0.0 0.0;
6631                   to_x: "elm.padding.right";
6632                   to_y: "elm.padding.bottom";
6633                }
6634                rel2 {
6635                   relative: 0.0 0.0;
6636                   to_x: "elm.padding.right";
6637                   to_y: "elm.padding.bottom";
6638                }
6639                align: 1.0 1.0;
6640                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
6641                text {
6642                   font: "SLP:style=Medium";
6643                   size: GENLIST_FONT_32_INC;
6644                   min: 0 1;
6645                   align: 1.0 0.5;
6646                   text_class: "slp_medium";
6647                }
6648             }
6649             description { state: "selected" 0.0;
6650                inherit: "default" 0.0;
6651                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
6652             }
6653             GENLIST_DESCRIPTION_FLIP_ENABLED
6654          }
6655          part { name: "elm.icon.1";
6656             clip_to: "disclip";
6657             type: SWALLOW;
6658             scale: 1;
6659             description { state: "default" 0.0;
6660                rel1 {
6661                   relative: 0.0 1.0;
6662                   to_x: "elm.padding.right";
6663                   to_y: "elm.padding.top";
6664                }
6665                rel2 {
6666                   relative: 0.0 0.0;
6667                   to_x: "elm.padding.right";
6668                   to_y: "elm.text.3";
6669                }
6670                align: 1.0 0.5;
6671             }
6672             GENLIST_DESCRIPTION_FLIP_ENABLED
6673          }
6674          part { name: "elm.padding.icon1.left";
6675             clip_to: "disclip";
6676             type: RECT;
6677             scale: 1;
6678             description { state: "default" 0.0;
6679                min: GENLIST_PADDING_16_INC 0;
6680                fixed: 1 0;
6681                rel1.to_x: "elm.icon.1";
6682                rel2 {
6683                   relative: 0.0 1.0;
6684                   to_x: "elm.icon.1";
6685                }
6686                align: 1.0 0.0;
6687                visible: 0;
6688             }
6689          }
6690          part { name: "elm.text.1";
6691             clip_to: "disclip";
6692             type: TEXT;
6693             mouse_events: 0;
6694             scale: 1;
6695             description { state: "default" 0.0;
6696                min: 0 GENLIST_SIZE_61_INC;
6697                fixed: 0 1;
6698                rel1 {
6699                   relative: 1.0 1.0;
6700                   to_x: "elm.padding.left";
6701                   to_y: "elm.padding.top";
6702                }
6703                rel2 {
6704                   relative: 0.0 1.0;
6705                   to_x: "elm.padding.icon1.left";
6706                   to_y: "elm.padding.top";
6707                }
6708                align: 0.0 0.0;
6709                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
6710                text {
6711                   font: "SLP:style=Roman";
6712                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
6713                   min: 0 1;
6714                   align: 0.0 0.5;
6715                   text_class: "list_item";
6716                }
6717             }
6718             description { state: "selected" 0.0;
6719                inherit: "default" 0.0;
6720                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
6721             }
6722             GENLIST_DESCRIPTION_FLIP_ENABLED
6723          }
6724          part { name: "elm.padding.text3.left";
6725             clip_to: "disclip";
6726             type: RECT;
6727             scale: 1;
6728             description { state: "default" 0.0;
6729                min: GENLIST_PADDING_16_INC 0;
6730                fixed: 1 0;
6731                rel1.to: "elm.text.3";
6732                rel2 {
6733                   relative: 0.0 1.0;
6734                   to: "elm.text.3";
6735                }
6736                align: 1.0 1.0;
6737                visible: 0;
6738             }
6739          }
6740          part { name: "elm.text.2";
6741             clip_to: "disclip";
6742             type: TEXT;
6743             mouse_events: 0;
6744             scale: 1;
6745             description { state: "default" 0.0;
6746                rel1 {
6747                   relative: 1.0 1.0;
6748                   to_x: "elm.padding.left";
6749                   to_y: "elm.text.1";
6750                }
6751                rel2 {
6752                   relative: 0.0 0.0;
6753                   to_x: "elm.padding.text3.left";
6754                   to_y: "elm.padding.bottom";
6755                }
6756                align: 0.0 0.5;
6757                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
6758                text {
6759                   font: "SLP:style=Medium";
6760                   size: GENLIST_FONT_32_INC;
6761                   min: 0 1;
6762                   align: 0.0 0.5;
6763                   text_class: "slp_medium";
6764                }
6765             }
6766             description { state: "selected" 0.0;
6767                inherit: "default" 0.0;
6768                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
6769             }
6770             GENLIST_DESCRIPTION_FLIP_ENABLED
6771          }
6772          part { name: "elm.padding.icon2.left";
6773             clip_to: "disclip";
6774             type: RECT;
6775             scale: 1;
6776             description { state: "default" 0.0;
6777                min: GENLIST_PADDING_16_INC 0;
6778                fixed: 1 0;
6779                rel1 {
6780                   relative: 1.0 0.0;
6781                   to_x: "elm.text.2";
6782                }
6783                rel2.to_x: "elm.text.2";
6784                align: 0.0 0.0;
6785                visible: 0;
6786             }
6787          }
6788          part { name: "elm.icon.2";
6789             clip_to: "disclip";
6790             type: SWALLOW;
6791             scale: 1;
6792             description { state: "default" 0.0;
6793                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6794                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6795                fixed: 1 1;
6796                rel1 {
6797                   relative: 1.0 1.0;
6798                   to_x: "elm.padding.icon2.left";
6799                   to_y: "elm.text.1";
6800                }
6801                rel2 {
6802                   relative: 1.0 0.0;
6803                   to_x: "elm.padding.icon2.left";
6804                   to_y: "elm.padding.bottom";
6805                }
6806                align: 0.0 0.5;
6807             }
6808             GENLIST_DESCRIPTION_FLIP_ENABLED
6809          }
6810          part { name: "elm.padding.icon3.left";
6811             clip_to: "disclip";
6812             type: RECT;
6813             scale: 1;
6814             description { state: "default" 0.0;
6815                min: GENLIST_PADDING_16_INC 0;
6816                fixed: 1 0;
6817                rel1 {
6818                   relative: 1.0 0.0;
6819                   to_x: "elm.icon.2";
6820                }
6821                rel2.to_x: "elm.icon.2";
6822                align: 0.0 0.0;
6823                visible: 0;
6824             }
6825          }
6826          part { name: "elm.icon.3";
6827             clip_to: "disclip";
6828             type: SWALLOW;
6829             scale: 1;
6830             description { state: "default" 0.0;
6831                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6832                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6833                fixed: 1 1;
6834                rel1 {
6835                   relative: 1.0 1.0;
6836                   to_x: "elm.padding.icon3.left";
6837                   to_y: "elm.text.1";
6838                }
6839                rel2 {
6840                   relative: 1.0 0.0;
6841                   to_x: "elm.padding.icon3.left";
6842                   to_y: "elm.padding.bottom";
6843                }
6844                align: 0.0 0.5;
6845             }
6846             GENLIST_DESCRIPTION_FLIP_ENABLED
6847          }
6848          part { name: "elm.padding.icon4.left";
6849             clip_to: "disclip";
6850             type: RECT;
6851             scale: 1;
6852             description { state: "default" 0.0;
6853                min: GENLIST_PADDING_16_INC 0;
6854                fixed: 1 0;
6855                rel1 {
6856                   relative: 1.0 0.0;
6857                   to_x: "elm.icon.3";
6858                }
6859                rel2.to_x: "elm.icon.3";
6860                align: 0.0 0.0;
6861                visible: 0;
6862             }
6863          }
6864          part { name: "elm.icon.4";
6865             clip_to: "disclip";
6866             type: SWALLOW;
6867             scale: 1;
6868             description { state: "default" 0.0;
6869                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6870                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6871                fixed: 1 1;
6872                rel1 {
6873                   relative: 1.0 1.0;
6874                   to_x: "elm.padding.icon4.left";
6875                   to_y: "elm.text.1";
6876                }
6877                rel2 {
6878                   relative: 1.0 0.0;
6879                   to_x: "elm.padding.icon4.left";
6880                   to_y: "elm.padding.bottom";
6881                }
6882                align: 0.0 0.5;
6883             }
6884             GENLIST_DESCRIPTION_FLIP_ENABLED
6885          }
6886          GENLIST_PART_FLIP
6887          GENLIST_PART_DISCLIP
6888       }
6889       programs {
6890          // signal: elm,state,%s,active
6891          //   a "check" item named %s went active
6892          // signal: elm,state,%s,passive
6893          //   a "check" item named %s went passive
6894          // default is passive
6895          program { name: "go_active";
6896             signal: "elm,state,selected";
6897             source: "elm";
6898             action: STATE_SET "selected" 0.0;
6899             target: "bg_image";
6900             target: "elm.text.1";
6901             target: "elm.text.2";
6902             target: "elm.text.3";
6903             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6904          }
6905          program { name: "go_passive";
6906             signal: "elm,state,unselected";
6907             source: "elm";
6908             action: STATE_SET "default" 0.0;
6909             target: "bg_image";
6910             target: "elm.text.1";
6911             target: "elm.text.2";
6912             target: "elm.text.3";
6913             transition: LINEAR 0.1;
6914          }
6915          program { name: "go_disabled";
6916             signal: "elm,state,disabled";
6917             source: "elm";
6918             action: STATE_SET "disabled" 0.0;
6919             target: "disclip";
6920          }
6921          program { name: "go_enabled";
6922             signal: "elm,state,enabled";
6923             source: "elm";
6924             action: STATE_SET "default" 0.0;
6925             target: "disclip";
6926          }
6927          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
6928          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6929       }
6930    }
6931
6932 // ???
6933    /* NOTE: This style is new mailbox style for email application. Otherwise do not use this. */
6934    group { name: "elm/genlist/item/3text.5icon.2/default";
6935       alias: "elm/genlist/item_odd/3text.5icon.2/default";
6936       alias: "elm/genlist/item_compress/3text.5icon.2/default";
6937       alias: "elm/genlist/item_compress_odd/3text.5icon.2/default";
6938       data.item: "stacking" "above";
6939       data.item: "selectraise" "on";
6940       data.item: "texts" "elm.text.subject elm.text.name elm.text.date";
6941       data.item: "contents" "elm.icon.important elm.icon.num elm.icon.attach elm.icon.colorbar elm.swallow.outbox.progress elm.icon.checkbox";
6942       data.item: "flips" "elm.flip.content";
6943       images {
6944          image: "00_list_bar_press_1x80.png" COMP;
6945       }
6946       parts {
6947          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6948          GENLIST_PART_BG
6949          GENLIST_PART_BG_IMAGE
6950          GENLIST_PART_BOTTOM_LINE
6951          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6952          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6953          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
6954          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6955          GENLIST_PART_COLORBAR
6956          part { name: "elm.icon.checkbox";
6957             clip_to: "disclip";
6958             type: SWALLOW;
6959             mouse_events: 1;
6960             scale: 1;
6961             description { state: "default" 0.0;
6962                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6963                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6964                fixed: 1 1;
6965                rel1 {
6966                   relative: 1.0 0.0;
6967                   to_x: "elm.padding.left";
6968                   to_y: "elm.padding.top";
6969                }
6970                rel2 {
6971                   relative: 0.0 0.0;
6972                   to_x: "elm.padding.right";
6973                   to_y: "elm.padding.bottom";
6974                }
6975                align: 0.0 0.5;
6976             }
6977          }
6978          part { name: "elm.text.date";
6979             clip_to: "disclip";
6980             type: TEXT;
6981             mouse_events: 0;
6982             scale: 1;
6983             description { state: "default" 0.0;
6984                min: GENLIST_SIZE_154_INC GENLIST_SIZE_61_INC;
6985                fixed: 1 1;
6986                rel1 {
6987                   to_x: "elm.padding.right";
6988                   to_y: "elm.padding.bottom";
6989                }
6990                rel2 {
6991                   relative: 0.0 0.0;
6992                   to_x: "elm.padding.right";
6993                   to_y: "elm.padding.bottom";
6994                }
6995                align: 1.0 1.0;
6996                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
6997                text {
6998                   font: "SLP:style=Medium";
6999                   size: GENLIST_FONT_32_INC;
7000                   min: 0 1;
7001                   align: 1.0 0.5;
7002                   text_class: "slp_medium";
7003                }
7004             }
7005             description { state: "selected" 0.0;
7006                inherit: "default" 0.0;
7007                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
7008             }
7009             GENLIST_DESCRIPTION_FLIP_ENABLED
7010          }
7011          part { name: "elm.icon.important";
7012             clip_to: "disclip";
7013             type: SWALLOW;
7014             mouse_events: 1;
7015             scale: 1;
7016             description { state: "default" 0.0;
7017                min: GENLIST_SIZE_56_INC GENLIST_SIZE_61_INC;
7018                fixed: 1 1;
7019                rel1 {
7020                   relative: 0.0 1.0;
7021                   to_x: "elm.padding.right";
7022                   to_y: "elm.padding.top";
7023                }
7024                rel2 {
7025                   relative: 0.0 0.0;
7026                   to_x: "elm.padding.right";
7027                   to_y: "elm.text.date";
7028                }
7029                align: 1.0 0.5;
7030             }
7031             GENLIST_DESCRIPTION_FLIP_ENABLED
7032          }
7033          part { name: "elm.padding.icon.important.left";
7034             clip_to: "disclip";
7035             type: RECT;
7036             scale: 1;
7037             description { state: "default" 0.0;
7038                min: GENLIST_PADDING_16_INC 0;
7039                fixed: 1 0;
7040                rel1{
7041                   relative: 0.0 1.0;
7042                   to_x: "elm.icon.important";
7043                }
7044                rel2 {
7045                   relative: 0.0 1.0;
7046                   to_x: "elm.icon.important";
7047                }
7048                align: 1.0 0.0;
7049                visible: 0;
7050             }
7051          }
7052          part { name: "elm.padding.icon.checkbox.right";
7053             clip_to: "disclip";
7054             type: RECT;
7055             scale: 1;
7056             description { state: "default" 0.0;
7057                min: GENLIST_PADDING_16_INC 0;
7058                fixed: 1 0;
7059                rel1 {
7060                   relative: 1.0 0.0;
7061                   to_x: "elm.icon.checkbox";
7062                   to_y: "elm.padding.top";
7063                }
7064                rel2 {
7065                   relative: 1.0 0.0;
7066                   to_x:  "elm.icon.checkbox";
7067                   to_y: "elm.padding.bottom";
7068                }
7069                align: 1.0 0.0;
7070                visible: 0;
7071             }
7072          }
7073          part { name: "elm.text.subject.rect";
7074             clip_to: "disclip";
7075             type: RECT;
7076             scale: 1;
7077             description { state: "default" 0.0;
7078                min: 0 GENLIST_SIZE_61_INC;
7079                fixed: 1 1;
7080                rel1 {
7081                   relative: 1.0 1.0;
7082                   to_x: "elm.padding.icon.checkbox.right";
7083                   to_y: "elm.padding.top";
7084                }
7085                rel2 {
7086                   relative: 0.0 0.0;
7087                   to_x: "elm.padding.icon.important.left";
7088                   to_y: "elm.padding.top";
7089                }
7090                align: 0.0 0.0;
7091                visible: 0;
7092             }
7093          }
7094          part { name: "elm.text.subject";
7095             clip_to: "disclip";
7096             type: TEXTBLOCK;
7097             mouse_events: 0;
7098             scale: 1;
7099             description { state: "default" 0.0;
7100                fixed: 1 1;
7101                rel1.to: "elm.text.subject.rect";
7102                rel2.to: "elm.text.subject.rect";
7103                align: 0.0 0.0;
7104                text {
7105                   style: "genlist_style_email_unread";
7106                   min: 0 1;
7107                   max: 0 1;
7108                   align: 0.0 0.5;
7109                }
7110             }
7111             description { state: "selected" 0.0;
7112                inherit: "default" 0.0;
7113                text.style: "genlist_style_email_selected";
7114             }
7115             description { state: "read" 0.0;
7116                inherit: "default" 0.0;
7117                text.style: "genlist_style_email_read";
7118             }
7119             description { state: "unread" 0.0;
7120                inherit: "default" 0.0;
7121                text.style: "genlist_style_email_unread";
7122             }
7123             description { state: "urgency_read" 0.0;
7124                inherit: "default" 0.0;
7125                text.style: "genlist_style_email_urgency_read";
7126             }
7127             description { state: "urgency_unread" 0.0;
7128                inherit: "default" 0.0;
7129                text.style: "genlist_style_email_urgency_unread";
7130             }
7131             GENLIST_DESCRIPTION_FLIP_ENABLED
7132          }
7133          part { name: "elm.text.name";
7134             clip_to: "disclip";
7135             type: TEXTBLOCK;
7136             scale: 1;
7137             description { state: "default" 0.0;
7138                fixed: 1 1;
7139                rel1 {
7140                   relative: 1.0 1.0;
7141                   to_x: "elm.padding.icon.checkbox.right";
7142                   to_y: "elm.text.subject";
7143                }
7144                rel2 {
7145                   relative: 0.0 0.0;
7146                   to_x: "elm.padding.icon.num.left";
7147                   to_y: "elm.padding.bottom";
7148                }
7149                align: 0.0 0.5;
7150                text {
7151                   style: "genlist_style_email_name";
7152                   min: 0 1;
7153                   align: 0.0 0.5;
7154                }
7155             }
7156             description { state: "selected" 0.0;
7157                inherit: "default" 0.0;
7158                text.style: "genlist_style_email_name_selected";
7159             }
7160             GENLIST_DESCRIPTION_FLIP_ENABLED
7161          }
7162          part { name: "elm.padding.icon.num.left";
7163             clip_to: "disclip";
7164             type: RECT;
7165             scale: 1;
7166             description { state: "default" 0.0;
7167                min: GENLIST_PADDING_16_INC 0;
7168                fixed: 1 0;
7169                rel1 {
7170                   relative: 0.0 1.0;
7171                   to_x: "elm.icon.num";
7172                   to_y: "elm.text.subject";
7173                }
7174                rel2 {
7175                   relative: 0.0 0.0;
7176                   to_x: "elm.icon.num";
7177                   to_y: "elm.padding.bottom";
7178                }
7179                align: 1.0 0.0;
7180                visible: 0;
7181             }
7182          }
7183          part { name: "elm.icon.num";
7184             clip_to: "disclip";
7185             type: SWALLOW;
7186             mouse_events: 0;
7187             scale: 1;
7188             description { state: "default" 0.0;
7189                min: GENLIST_SIZE_112_INC GENLIST_SIZE_45_INC;
7190                max: GENLIST_SIZE_112_INC GENLIST_SIZE_45_INC;
7191                fixed: 1 1;
7192                rel1 {
7193                   relative: 0.0 1.0;
7194                   to_x: "elm.padding.icon.attach.left";
7195                   to_y: "elm.text.subject";
7196                }
7197                rel2 {
7198                   relative: 0.0 0.0;
7199                   to_x: "elm.padding.icon.attach.left";
7200                   to_y: "elm.padding.bottom";
7201                }
7202                align: 1.0 0.5;
7203             }
7204             GENLIST_DESCRIPTION_FLIP_ENABLED
7205          }
7206          part { name: "elm.padding.icon.attach.left";
7207             clip_to: "disclip";
7208             type: RECT;
7209             scale: 1;
7210             description { state: "default" 0.0;
7211                min: GENLIST_PADDING_16_INC 0;
7212                fixed: 1 0;
7213                rel1 {
7214                   relative: 0.0 1.0;
7215                   to_x: "elm.icon.attach";
7216                   to_y: "elm.text.subject";
7217                }
7218                rel2 {
7219                   relative: 0.0 0.0;
7220                   to_x: "elm.icon.attach";
7221                   to_y: "elm.padding.bottom";
7222                }
7223                align: 1.0 0.0;
7224                visible: 0;
7225             }
7226          }
7227          part { name: "elm.icon.attach";
7228             clip_to: "disclip";
7229             type: SWALLOW;
7230             scale: 1;
7231             description { state: "default" 0.0;
7232                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
7233                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
7234                fixed: 1 1;
7235                rel1 {
7236                   relative: 0.0 1.0;
7237                   to_x: "elm.text.date";
7238                   to_y: "elm.text.subject";
7239                }
7240                rel2 {
7241                   relative: 0.0 0.0;
7242                   to_x: "elm.text.date";
7243                   to_y: "elm.padding.bottom";
7244                }
7245                align: 1.0 0.5;
7246             }
7247             GENLIST_DESCRIPTION_FLIP_ENABLED
7248          }
7249          part { name: "elm.swallow.outbox.progress";
7250             type: SWALLOW;
7251             scale: 1;
7252             mouse_events: 1;
7253             repeat_events: 0;
7254             description { state: "default" 0.0;
7255                min: GENLIST_SIZE_168_INC 0;
7256                fixed: 1 1;
7257                color: 0 0 0 0;
7258                align: 1.0 0.5;
7259                rel1 {
7260                   relative: 0.0 1.0;
7261                   offset: 0 0;
7262                   to_x: "elm.padding.right";
7263                   to_y: "elm.padding.top";
7264                }
7265                rel2 {
7266                   relative: 0.0 0.0;
7267                   offset: 0 0;
7268                   to_x: "elm.padding.right";
7269                   to_y: "elm.padding.bottom";
7270                }
7271             }
7272          }
7273          GENLIST_PART_FLIP
7274          GENLIST_PART_DISCLIP
7275       }
7276       programs {
7277          // signal: elm,state,%s,active
7278          //   a "check" item named %s went active
7279          // signal: elm,state,%s,passive
7280          //   a "check" item named %s went passive
7281          // default is passive
7282          program { name: "go_active";
7283             signal: "elm,state,selected";
7284             source: "elm";
7285             action: STATE_SET "selected" 0.0;
7286             target: "bg_image";
7287             target: "elm.text.subject";
7288             target: "elm.text.name";
7289             target: "elm.text.date";
7290             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7291          }
7292          program { name: "go_passive";
7293             signal: "elm,state,unselected";
7294             source: "elm";
7295             action: STATE_SET "default" 0.0;
7296             target: "bg_image";
7297             target: "elm.text.subject";
7298             target: "elm.text.name";
7299             target: "elm.text.date";
7300             transition: LINEAR 0.1;
7301          }
7302          program { name: "go_disabled";
7303             signal: "elm,state,disabled";
7304             source: "elm";
7305             action: STATE_SET "disabled" 0.0;
7306             target: "disclip";
7307          }
7308          program { name: "go_enabled";
7309             signal: "elm,state,enabled";
7310             source: "elm";
7311             action: STATE_SET "default" 0.0;
7312             target: "disclip";
7313          }
7314          program { name: "go_read";
7315             signal: "elm,state,read";
7316             source: "elm";
7317             action: STATE_SET "read" 0.0;
7318             target: "elm.text.subject";
7319          }
7320          program { name: "go_unread";
7321             signal: "elm,state,unread";
7322             source: "elm";
7323             action: STATE_SET "unread" 0.0;
7324             target: "elm.text.subject";
7325          }
7326          program { name: "go_urgeny_unread";
7327             signal: "elm,state,urgency_unread";
7328             source: "elm";
7329             action: STATE_SET "urgency_unread" 0.0;
7330             target: "elm.text.subject";
7331          }
7332          program { name: "go_urgency_read";
7333             signal: "elm,state,urgency_read";
7334             source: "elm";
7335             action: STATE_SET "urgency_read" 0.0;
7336             target: "elm.text.subject";
7337          }
7338          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7339       }
7340    }
7341
7342 // Email style (No UX???)
7343    group { name: "elm/genlist/item/4text.8icon/default";
7344       alias: "elm/genlist/item_odd/4text.8icon/default";
7345       alias: "elm/genlist/item_compress/4text.8icon/default";
7346       alias: "elm/genlist/item_compress_odd/4text.8icon/default";
7347       data.item: "stacking" "above";
7348       data.item: "selectraise" "on";
7349       data.item: "texts" "elm.text.subject elm.text.name elm.text.date elm.text.preview elm.text.num";
7350       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";
7351       data.item: "flips" "elm.flip.content";
7352       script {
7353          public email_state = 0;
7354       }
7355       images {
7356          image: "00_list_bar_press_1x80.png" COMP;
7357          image: "M02_button_06_normal.png" COMP;
7358       }
7359       parts {
7360          GENLIST_PART_BASE( GENLIST_SIZE_160_INC )
7361          GENLIST_PART_BG
7362          GENLIST_PART_BG_IMAGE
7363          GENLIST_PART_BOTTOM_LINE
7364          GENLIST_PART_PADDING_TOP( 8 )
7365          GENLIST_PART_PADDING_BOTTOM( 8 )
7366          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
7367          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
7368          GENLIST_PART_COLORBAR
7369          part { name: "elm.icon.checkbox.touch";
7370             clip_to: "disclip";
7371             type: SWALLOW;
7372             mouse_events: 1;
7373             scale: 1;
7374             description { state: "default" 0.0;
7375                rel1.to: "elm.icon.checkbox";
7376                rel1.offset: -GENLIST_PADDING_SIZE_LEFT 0;
7377                rel2.to: "elm.icon.checkbox";
7378                rel1.offset: GENLIST_PADDING_SIZE_DEFAULT 0;
7379             }
7380          }
7381          part { name: "elm.icon.checkbox";
7382             clip_to: "disclip";
7383             type: SWALLOW;
7384             mouse_events: 1;
7385             scale: 1;
7386             GENLIST_DESCRIPTION_L("elm.padding.left",
7387                max: GENLIST_ICON_CHECK_SIZE GENLIST_ICON_CHECK_SIZE;
7388                max: GENLIST_ICON_CHECK_SIZE GENLIST_ICON_CHECK_SIZE;
7389                fixed: 1 1;
7390             )
7391          }
7392          GENLIST_PART_PADDING_LEFT_TO("elm.padding.icon.checkbox.right", "elm.icon.checkbox", GENLIST_PADDING_SIZE_DEFAULT)
7393          part { name: "elm.icon.important";
7394             clip_to: "disclip";
7395             type: SWALLOW;
7396             mouse_events: 1;
7397             scale: 1;
7398             GENLIST_DESCRIPTION_RT("elm.padding.right", "elm.padding.top",
7399                min: 56 60;
7400                fixed: 1 1;
7401             )
7402             GENLIST_DESCRIPTION_FLIP_ENABLED
7403          }
7404          part { name: "elm.icon.important.touch";
7405             clip_to: "disclip";
7406             type: SWALLOW;
7407             mouse_events: 1;
7408             scale: 1;
7409             description { state: "default" 0.0;
7410                rel1.to: "elm.icon.important";
7411                rel2.to: "elm.icon.important";
7412             }
7413             GENLIST_DESCRIPTION_FLIP_ENABLED
7414          }
7415          GENLIST_PART_PADDING_RIGHT_TO("elm.padding.icon.important.left", "elm.icon.important", GENLIST_PADDING_SIZE_DEFAULT)
7416          // This part is used?
7417          part { name: "elm.icon.num";
7418             clip_to: "disclip";
7419             type: IMAGE;
7420             mouse_events: 0;
7421             scale: 1;
7422             GENLIST_DESCRIPTION_RT("elm.padding.icon.important.left", "elm.padding.top",
7423                max: 0 60;
7424                fixed: 1 1;
7425                rel1.offset: 0 8;
7426                rel2.offset: 0 8;
7427                image.normal: "M02_button_06_normal.png";
7428                image.border: 5 5 5 5;
7429             )
7430             description { state: "num_enable" 0.0;
7431                inherit: "default" 0.0;
7432                max: 62 60;
7433                min: 46 44;
7434             }
7435             GENLIST_DESCRIPTION_FLIP_ENABLED
7436          }
7437          // This part is used?
7438          part { name: "elm.text.num";
7439             clip_to: "disclip";
7440             type: TEXT;
7441             mouse_events: 0;
7442             scale: 1;
7443             GENLIST_DESCRIPTION_RT("elm.padding.icon.important.left", "elm.padding.top",
7444                max: 0 60;
7445                fixed: 1 1;
7446                rel1.offset: 0 8;
7447                rel2.offset: 0 8;
7448             )
7449             description { state: "num_enable" 0.0;
7450                inherit: "default" 0.0;
7451                max: 62 60;
7452                min: 46 44;
7453                text {
7454                   font: "SLP:style=Medium";
7455                   size: 32;
7456                   min: 1 1;
7457                   align: 0.5 0.5;
7458                   text_class: "slp_medium";
7459                }
7460                color: GENLIST_CONVERTOR_STYLE_COLOR;
7461             }
7462             GENLIST_DESCRIPTION_FLIP_ENABLED
7463          }
7464          part { name: "elm.icon.attach";
7465             clip_to: "disclip";
7466             type: SWALLOW;
7467             scale: 1;
7468             GENLIST_DESCRIPTION_RT("elm.icon.num", "elm.padding.top",
7469                min: 0 60;
7470                fixed: 1 1;
7471             )
7472             description { state: "attach_enable" 0.0;
7473                inherit: "default" 0.0;
7474                min: 48 60;
7475             }
7476             GENLIST_DESCRIPTION_FLIP_ENABLED
7477          }
7478          part { name: "elm.text.subject";
7479             clip_to: "disclip";
7480             type: TEXTBLOCK;
7481             mouse_events: 0;
7482             scale: 1;
7483             GENLIST_DESCRIPTION_LRT("elm.padding.icon.checkbox.right", "elm.icon.attach", "elm.padding.top",
7484                min: 0 GENLIST_SIZE_SLIDE_60_INC;
7485                fixed: 1 1;
7486                text {
7487                   style: "genlist_style_email_unread";
7488                   min: 0 1;
7489                   max: 0 1;
7490                   align: 0 0.5;
7491                }
7492             )
7493             description { state: "selected" 0.0;
7494                inherit: "default" 0.0;
7495                text.style: "genlist_style_email_selected";
7496             }
7497             description { state: "read" 0.0;
7498                inherit: "default" 0.0;
7499                text.style: "genlist_style_email_read";
7500             }
7501             description { state: "unread" 0.0;
7502                inherit: "default" 0.0;
7503                text.style: "genlist_style_email_unread";
7504             }
7505             GENLIST_DESCRIPTION_FLIP_ENABLED
7506          }
7507
7508          part { name: "elm.padding.intermediate";
7509             clip_to: "disclip";
7510             type: RECT;
7511             scale: 1;
7512             description { state: "default" 0.0;
7513                min: 0 GENLIST_PADDING_4_INC;
7514                fixed: 0 1;
7515                rel1 {
7516                   relative: 1.0 1.0;
7517                   to_x: "elm.padding.icon.checkbox.right";
7518                   to_y: "elm.icon.attach";
7519                }
7520                rel2 {
7521                   relative: 1.0 1.0;
7522                   to_x:  "elm.padding.icon.checkbox.right";
7523                   to_y: "elm.icon.attach";
7524                }
7525                align: 1.0 0.0;
7526                visible: 0;
7527             }
7528          }
7529          part { name: "elm.icon.priority";
7530             clip_to: "disclip";
7531             type: SWALLOW;
7532             scale: 1;
7533             description { state: "default" 0.0;
7534                min: 0 GENLIST_SIZE_40_INC;
7535                fixed: 1 1;
7536                rel1 {
7537                   relative: 1.0 1.0;
7538                   to_x: "elm.padding.icon.checkbox.right";
7539                   to_y: "elm.padding.intermediate";
7540                }
7541                rel2 {
7542                   relative: 1.0 1.0;
7543                   to_x: "elm.padding.icon.checkbox.right";
7544                   to_y: "elm.padding.intermediate";
7545                }
7546                align: 0.0 0.0;
7547             }
7548             description { state: "priority_enable" 0.0;
7549                inherit: "default" 0.0;
7550                min: GENLIST_SIZE_48_INC GENLIST_SIZE_40_INC;
7551             }
7552             GENLIST_DESCRIPTION_FLIP_ENABLED
7553          }
7554          part { name: "elm.icon.lastverb";
7555             clip_to: "disclip";
7556             type: SWALLOW;
7557             scale: 1;
7558             description { state: "default" 0.0;
7559                min: 0 GENLIST_SIZE_40_INC;
7560                fixed: 1 1;
7561                rel1 {
7562                   relative: 1.0 1.0;
7563                   to_x: "elm.padding.icon.checkbox.right";
7564                   to_y: "elm.icon.priority";
7565                }
7566                rel2 {
7567                   relative: 1.0 1.0;
7568                   to_x: "elm.padding.icon.checkbox.right";
7569                   to_y: "elm.icon.priority";
7570                }
7571                align: 0.0 0.0;
7572             }
7573             description { state: "lastverb_enable" 0.0;
7574                inherit: "default" 0.0;
7575                min: GENLIST_SIZE_48_INC GENLIST_SIZE_40_INC;
7576             }
7577             GENLIST_DESCRIPTION_FLIP_ENABLED
7578          }
7579
7580          part { name: "elm.text.date";
7581             clip_to: "disclip";
7582             type: TEXT;
7583             mouse_events: 0;
7584             scale: 1;
7585             description { state: "default" 0.0;
7586                min: GENLIST_SIZE_154_INC GENLIST_SIZE_40_INC;
7587                fixed: 1 1;
7588                rel1 {
7589                   to_x: "elm.padding.right";
7590                   to_y: "elm.padding.bottom";
7591                }
7592                rel2 {
7593                   relative: 0.0 0.0;
7594                   to_x: "elm.padding.right";
7595                   to_y: "elm.padding.bottom";
7596                }
7597                align: 1.0 1.0;
7598                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
7599                text {
7600                   font: "SLP:style=Medium";
7601                   size: GENLIST_FONT_32_INC;
7602                   min: 0 1;
7603                   align: 1.0 0.5;
7604                   text_class: "slp_medium";
7605                }
7606             }
7607             description { state: "selected" 0.0;
7608                inherit: "default" 0.0;
7609                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
7610             }
7611             GENLIST_DESCRIPTION_FLIP_ENABLED
7612          }
7613
7614          part { name: "elm.icon.appointment";
7615             clip_to: "disclip";
7616             type: SWALLOW;
7617             mouse_events: 0;
7618             scale: 1;
7619             description { state: "default" 0.0;
7620                min: 0 GENLIST_SIZE_40_INC;
7621                fixed: 1 1;
7622                rel1 {
7623                   relative: 0.0 1.0;
7624                   to_x: "elm.padding.right";
7625                   to_y: "elm.padding.intermediate";
7626                }
7627                rel2 {
7628                   relative: 0.0 1.0;
7629                   to_x: "elm.padding.right";
7630                   to_y: "elm.padding.intermediate";
7631                }
7632                align: 1.0 0.0;
7633             }
7634             GENLIST_DESCRIPTION_FLIP_ENABLED
7635          }
7636          part { name: "elm.text.name";
7637             clip_to: "disclip";
7638             type: TEXTBLOCK;
7639             scale: 1;
7640             description { state: "default" 0.0;
7641                min: 0 GENLIST_SIZE_40_INC;
7642                fixed: 1 1;
7643                rel1 {
7644                   relative: 1.0 1.0;
7645                   to_x: "elm.icon.priority";
7646                   to_y: "elm.padding.intermediate";
7647                }
7648                rel2 {
7649                   relative: 0.0 1.0;
7650                   to_x: "elm.icon.appointment";
7651                   to_y: "elm.padding.intermediate";
7652                }
7653                align: 0.0 0.0;
7654                text {
7655                   style: "genlist_style_email_name";
7656                   min: 0 1;
7657                   align: 0.0 0.5;
7658                }
7659             }
7660             description { state: "selected" 0.0;
7661                inherit: "default" 0.0;
7662                text.style: "genlist_style_email_name_selected";
7663             }
7664             GENLIST_DESCRIPTION_FLIP_ENABLED
7665          }
7666          part { name: "elm.text.preview";
7667             clip_to: "disclip";
7668             type: TEXT;
7669             scale: 1;
7670             description { state: "default" 0.0;
7671                min: 0 GENLIST_SIZE_40_INC;
7672                fixed: 1 1;
7673                rel1 {
7674                   relative: 1.0 0.0;
7675                   to_x: "elm.icon.lastverb";
7676                   to_y: "elm.padding.bottom";
7677                }
7678                rel2 {
7679                   relative: 0.0 0.0;
7680                   to_x: "elm.text.date";
7681                   to_y: "elm.padding.bottom";
7682                }
7683                align: 0.0 1.0;
7684                color: GENLIST_CONTENTS_TEXT_COLOR;
7685                text {
7686                   font: "SLP:style=Medium";
7687                   size: GENLIST_CONTENTS_TEXT_SIZE;
7688                   min: 0 1;
7689                   align: 0.0 0.5;
7690                   text_class: "slp_medium";
7691                }
7692             }
7693             description { state: "selected" 0.0;
7694                inherit: "default" 0.0;
7695                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
7696             }
7697             GENLIST_DESCRIPTION_FLIP_ENABLED
7698          }
7699          part { name: "elm.swallow.outbox.progress";
7700             type: SWALLOW;
7701             scale: 1;
7702             mouse_events: 1;
7703             repeat_events: 0;
7704             description { state: "default" 0.0;
7705                min: GENLIST_SIZE_168_INC 0;
7706                fixed: 1 1;
7707                color: 0 0 0 0;
7708                align: 1.0 0.5;
7709                rel1 {
7710                   relative: 0.0 1.0;
7711                   offset: 0 0;
7712                   to_x: "elm.padding.right";
7713                   to_y: "elm.padding.top";
7714                }
7715                rel2 {
7716                   relative: 0.0 0.0;
7717                   offset: 0 0;
7718                   to_x: "elm.padding.right";
7719                   to_y: "elm.padding.bottom";
7720                }
7721             }
7722          }
7723          GENLIST_PART_FLIP
7724          GENLIST_PART_DISCLIP
7725       }
7726       programs {
7727          // signal: elm,state,%s,active
7728          //   a "check" item named %s went active
7729          // signal: elm,state,%s,passive
7730          //   a "check" item named %s went passive
7731          // default is passive
7732          program { name: "go_active";
7733             signal: "elm,state,selected";
7734             source: "elm";
7735             action: STATE_SET "selected" 0.0;
7736             target: "bg_image";
7737             target: "elm.text.subject";
7738             target: "elm.text.name";
7739             target: "elm.text.date";
7740             target: "elm.text.preview";
7741             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7742          }
7743          program { name: "go_passive";
7744             signal: "elm,state,unselected";
7745             source: "elm";
7746             transition: LINEAR 0.1;
7747             script {
7748                set_state(PART:"bg_image", "default", 0.0);
7749                set_state(PART:"elm.text.name", "default", 0.0);
7750                set_state(PART:"elm.text.date", "default", 0.0);
7751                set_state(PART:"elm.text.preview", "default", 0.0);
7752                if (get_int(email_state) == 1)
7753                  set_state(PART:"elm.text.subject", "read", 0.0);
7754               else
7755                  set_state(PART:"elm.text.subject", "unread", 0.0);
7756             }
7757          }
7758          program { name: "go_disabled";
7759             signal: "elm,state,disabled";
7760             source: "elm";
7761             action: STATE_SET "disabled" 0.0;
7762             target: "disclip";
7763          }
7764          program { name: "go_enabled";
7765             signal: "elm,state,enabled";
7766             source: "elm";
7767             action: STATE_SET "default" 0.0;
7768             target: "disclip";
7769          }
7770          program { name: "go_read";
7771             signal: "elm,state,read";
7772             source: "elm";
7773             script {
7774               set_int(email_state, 1);
7775               set_state(PART:"elm.text.subject", "read", 0.0);
7776             }
7777          }
7778          program { name: "go_unread";
7779             signal: "elm,state,unread";
7780             source: "elm";
7781             script {
7782               set_int(email_state, 0);
7783               set_state(PART:"elm.text.subject", "unread", 0.0);
7784             }
7785          }
7786          program { name: "go_attach";
7787             signal: "elm,state,attach";
7788             source: "elm";
7789             action: STATE_SET "attach_enable" 0.0;
7790             target: "elm.icon.attach";
7791          }
7792          program { name: "go_priority";
7793             signal: "elm,state,priority";
7794             source: "elm";
7795             action: STATE_SET "priority_enable" 0.0;
7796             target: "elm.icon.priority";
7797          }
7798          program { name: "go_lastverb";
7799             signal: "elm,state,lastverb";
7800             source: "elm";
7801             action: STATE_SET "lastverb_enable" 0.0;
7802             target: "elm.icon.lastverb";
7803          }
7804          program { name: "go_num";
7805             signal: "elm,state,num";
7806             source: "elm";
7807             action: STATE_SET "num_enable" 0.0;
7808             target: "elm.icon.num";
7809             target: "elm.text.num";
7810          }
7811          program { name: "click";
7812             signal: "mouse,up,1";
7813             source: "elm.icon.checkbox.touch";
7814             action: SIGNAL_EMIT "elm,action,check,toggle" "";
7815          }
7816          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7817       }
7818    }
7819
7820
7821 // ???
7822    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
7823    group { name: "elm/genlist/item/3text.6icon/default";
7824       alias: "elm/genlist/item_odd/3text.6icon/default";
7825       alias: "elm/genlist/item_compress/3text.6icon/default";
7826       alias: "elm/genlist/item_compress_odd/3text.6icon/default";
7827       data.item: "stacking" "above";
7828       data.item: "selectraise" "on";
7829       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
7830       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.swallow.colorbar elm.swallow.outbox.progress";
7831       data.item: "flips" "elm.flip.content";
7832       images {
7833          image: "00_list_bar_press_1x80.png" COMP;
7834       }
7835       parts {
7836          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
7837          GENLIST_PART_BG
7838          GENLIST_PART_BG_IMAGE
7839          GENLIST_PART_BOTTOM_LINE
7840          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
7841          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
7842          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
7843          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
7844          part { name: "elm.swallow.colorbar";
7845             clip_to: "disclip";
7846             type: SWALLOW;
7847             scale: 1;
7848             description { state: "default" 0.0;
7849                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
7850                rel2.relative: 0.0 0.0;
7851                align: 0.0 0.0;
7852             }
7853          }
7854          part { name: "elm.text.3";
7855             clip_to: "disclip";
7856             type: TEXT;
7857             mouse_events: 0;
7858             scale: 1;
7859             description { state: "default" 0.0;
7860                min: GENLIST_SIZE_154_INC GENLIST_SIZE_61_INC;
7861                rel1 {
7862                   relative: 0.0 0.0;
7863                   to_x: "elm.padding.right";
7864                   to_y: "elm.padding.bottom";
7865                }
7866                rel2 {
7867                   relative: 0.0 0.0;
7868                   to_x: "elm.padding.right";
7869                   to_y: "elm.padding.bottom";
7870                }
7871                align: 1.0 1.0;
7872                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
7873                text {
7874                   font: "SLP:style=Medium";
7875                   size: GENLIST_FONT_32_INC;
7876                   min: 0 1;
7877                   align: 1.0 0.5;
7878                   text_class: "slp_medium";
7879                }
7880             }
7881             description { state: "selected" 0.0;
7882                inherit: "default" 0.0;
7883                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
7884             }
7885             GENLIST_DESCRIPTION_FLIP_ENABLED
7886          }
7887          part { name: "elm.icon.1";
7888             clip_to: "disclip";
7889             type: SWALLOW;
7890             mouse_events: 0;
7891             scale: 1;
7892             description { state: "default" 0.0;
7893                rel1 {
7894                   relative: 0.0 1.0;
7895                   to_x: "elm.padding.right";
7896                   to_y: "elm.padding.top";
7897                }
7898                rel2 {
7899                   relative: 0.0 0.0;
7900                   to_x: "elm.padding.right";
7901                   to_y: "elm.text.3";
7902                }
7903                align: 1.0 0.0;
7904             }
7905             GENLIST_DESCRIPTION_FLIP_ENABLED
7906          }
7907          part { name: "elm.padding.icon1.left";
7908             clip_to: "disclip";
7909             type: RECT;
7910             scale: 1;
7911             description { state: "default" 0.0;
7912                min: GENLIST_PADDING_16_INC 0;
7913                rel1.to_x: "elm.icon.1";
7914                rel2 {
7915                   relative: 0.0 1.0;
7916                   to_x: "elm.icon.1";
7917                }
7918                align: 1.0 0.0;
7919                visible: 0;
7920             }
7921          }
7922          part { name: "elm.text1.rect";
7923             clip_to: "disclip";
7924             type: RECT;
7925             scale: 1;
7926             description { state: "default" 0.0;
7927                min: 0 GENLIST_SIZE_61_INC;
7928                rel1 {
7929                   relative: 1.0 1.0;
7930                   to_x: "elm.swallow.colorbar";
7931                   to_y: "elm.padding.top";
7932                }
7933                rel2 {
7934                   relative: 0.0 0.0;
7935                   to_x: "elm.padding.icon1.left";
7936                   to_y: "elm.padding.top";
7937                }
7938                align: 0.0 0.0;
7939                visible: 0;
7940             }
7941          }
7942          part { name: "elm.text.1";
7943             clip_to: "disclip";
7944             type: TEXTBLOCK;
7945             mouse_events: 0;
7946             scale: 1;
7947             description { state: "default" 0.0;
7948                rel1.to: "elm.text1.rect";
7949                rel2.to: "elm.text1.rect";
7950                align: 0.0 0.0;
7951                text {
7952                   style: "genlist_style_email_unread";
7953                   min: 0 1;
7954                   max: 0 1;
7955                   align: 0.0 0.5;
7956                }
7957             }
7958             description { state: "selected" 0.0;
7959                inherit: "default" 0.0;
7960                text.style: "genlist_style_email_selected";
7961             }
7962             description { state: "read" 0.0;
7963                inherit: "default" 0.0;
7964                text.style: "genlist_style_email_read";
7965             }
7966             description { state: "unread" 0.0;
7967                inherit: "default" 0.0;
7968                text.style: "genlist_style_email_unread";
7969             }
7970             description { state: "urgency_read" 0.0;
7971                inherit: "default" 0.0;
7972                text.style: "genlist_style_email_urgency_read";
7973             }
7974             description { state: "urgency_unread" 0.0;
7975                inherit: "default" 0.0;
7976                text.style: "genlist_style_email_urgency_unread";
7977             }
7978             GENLIST_DESCRIPTION_FLIP_ENABLED
7979          }
7980          part { name: "elm.text.2";
7981             clip_to: "disclip";
7982             type: TEXTBLOCK;
7983             scale: 1;
7984             description { state: "default" 0.0;
7985                rel1 {
7986                   relative: 1.0 1.0;
7987                   to_x: "elm.padding.left";
7988                   to_y: "elm.text.1";
7989                }
7990                rel2 {
7991                   relative: 0.0 0.0;
7992                   to_x: "elm.padding.icon2.left";
7993                   to_y: "elm.padding.bottom";
7994                }
7995                align: 0.0 0.5;
7996                text {
7997                   style: "genlist_style_email_name";
7998                   min: 0 1;
7999                   align: 0.0 0.5;
8000                }
8001             }
8002             description { state: "selected" 0.0;
8003                inherit: "default" 0.0;
8004                text.style: "genlist_style_email_name_selected";
8005             }
8006             GENLIST_DESCRIPTION_FLIP_ENABLED
8007          }
8008          part { name: "elm.padding.icon2.left";
8009             clip_to: "disclip";
8010             type: RECT;
8011             scale: 1;
8012             description { state: "default" 0.0;
8013                min: GENLIST_PADDING_16_INC 0;
8014                rel1 {
8015                   relative: 0.0 1.0;
8016                   to_x: "elm.icon.2";
8017                   to_y: "elm.text.1";
8018                }
8019                rel2 {
8020                   relative: 0.0 0.0;
8021                   to_x: "elm.icon.2";
8022                   to_y: "elm.padding.bottom";
8023                }
8024                align: 1.0 0.0;
8025                visible: 0;
8026             }
8027          }
8028          part { name: "elm.icon.2";
8029             clip_to: "disclip";
8030             type: SWALLOW;
8031             scale: 1;
8032             description { state: "default" 0.0;
8033                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8034                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8035                rel1 {
8036                   relative: 0.0 1.0;
8037                   to_x: "elm.padding.icon3.left";
8038                   to_y: "elm.text.1";
8039                }
8040                rel2 {
8041                   relative: 0.0 0.0;
8042                   to_x: "elm.padding.icon3.left";
8043                   to_y: "elm.padding.bottom";
8044                }
8045                align: 1.0 0.5;
8046             }
8047             GENLIST_DESCRIPTION_FLIP_ENABLED
8048          }
8049          part { name: "elm.padding.icon3.left";
8050             clip_to: "disclip";
8051             type: RECT;
8052             scale: 1;
8053             description { state: "default" 0.0;
8054                min: GENLIST_PADDING_16_INC 0;
8055                rel1 {
8056                   relative: 0.0 1.0;
8057                   to_x: "elm.icon.3";
8058                   to_y: "elm.text.1";
8059                }
8060                rel2 {
8061                   relative: 0.0 0.0;
8062                   to_x: "elm.icon.3";
8063                   to_y: "elm.padding.bottom";
8064                }
8065                align: 1.0 0.0;
8066                visible: 0;
8067             }
8068          }
8069          part { name: "elm.icon.3";
8070             clip_to: "disclip";
8071             type: SWALLOW;
8072             scale: 1;
8073             description { state: "default" 0.0;
8074                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8075                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8076                rel1 {
8077                   relative: 0.0 1.0;
8078                   to_x: "elm.padding.icon4.left";
8079                   to_y: "elm.text.1";
8080                }
8081                rel2 {
8082                   relative: 0.0 0.0;
8083                   to_x: "elm.padding.icon4.left";
8084                   to_y: "elm.padding.bottom";
8085                }
8086                align: 1.0 0.5;
8087             }
8088             GENLIST_DESCRIPTION_FLIP_ENABLED
8089          }
8090          part { name: "elm.padding.icon4.left";
8091             clip_to: "disclip";
8092             type: RECT;
8093             scale: 1;
8094             description { state: "default" 0.0;
8095                min: GENLIST_PADDING_16_INC 0;
8096                rel1 {
8097                   relative: 0.0 1.0;
8098                   to_x: "elm.icon.4";
8099                   to_y: "elm.text.1";
8100                }
8101                rel2 {
8102                   relative: 0.0 0.0;
8103                   to_x: "elm.icon.4";
8104                   to_y: "elm.padding.bottom";
8105                }
8106                align: 1.0 0.0;
8107                visible: 0;
8108             }
8109          }
8110          part { name: "elm.icon.4";
8111             clip_to: "disclip";
8112             type: SWALLOW;
8113             scale: 1;
8114             description { state: "default" 0.0;
8115                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8116                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8117                rel1 {
8118                   relative: 0.0 1.0;
8119                   to_x: "elm.text.3";
8120                   to_y: "elm.text.1";
8121                }
8122                rel2 {
8123                   relative: 0.0 0.0;
8124                   to_x: "elm.text.3";
8125                   to_y: "elm.padding.bottom";
8126                }
8127                align: 1.0 0.5;
8128             }
8129             GENLIST_DESCRIPTION_FLIP_ENABLED
8130          }
8131          part { name: "elm.swallow.outbox.progress";
8132             type: SWALLOW;
8133             scale: 1;
8134             mouse_events: 1;
8135             repeat_events: 0;
8136             description { state: "default" 0.0;
8137                min: GENLIST_SIZE_168_INC 0;
8138                color: 0 0 0 0;
8139                align: 1.0 0.5;
8140                rel1 {
8141                   relative: 0.0 1.0;
8142                   offset: 0 0;
8143                   to_x: "elm.padding.right";
8144                   to_y: "elm.padding.top";
8145                }
8146                rel2 {
8147                   relative: 0.0 0.0;
8148                   offset: 0 0;
8149                   to_x: "elm.padding.right";
8150                   to_y: "elm.padding.bottom";
8151                }
8152             }
8153          }
8154          GENLIST_PART_FLIP
8155          GENLIST_PART_DISCLIP
8156       }
8157       programs {
8158          // signal: elm,state,%s,active
8159          //   a "check" item named %s went active
8160          // signal: elm,state,%s,passive
8161          //   a "check" item named %s went passive
8162          // default is passive
8163          program { name: "go_active";
8164             signal: "elm,state,selected";
8165             source: "elm";
8166             action: STATE_SET "selected" 0.0;
8167             target: "bg_image";
8168             target: "elm.text.1";
8169             target: "elm.text.2";
8170             target: "elm.text.3";
8171             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8172          }
8173          program { name: "go_passive";
8174             signal: "elm,state,unselected";
8175             source: "elm";
8176             action: STATE_SET "default" 0.0;
8177             target: "bg_image";
8178             target: "elm.text.1";
8179             target: "elm.text.2";
8180             target: "elm.text.3";
8181             transition: LINEAR 0.1;
8182          }
8183          program { name: "go_disabled";
8184             signal: "elm,state,disabled";
8185             source: "elm";
8186             action: STATE_SET "disabled" 0.0;
8187             target: "disclip";
8188          }
8189          program { name: "go_enabled";
8190             signal: "elm,state,enabled";
8191             source: "elm";
8192             action: STATE_SET "default" 0.0;
8193             target: "disclip";
8194          }
8195          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
8196          program { name: "go_read";
8197             signal: "elm,state,read";
8198             source: "elm";
8199             action: STATE_SET "read" 0.0;
8200             target: "elm.text.1";
8201          }
8202          program { name: "go_unread";
8203             signal: "elm,state,unread";
8204             source: "elm";
8205             action: STATE_SET "unread" 0.0;
8206             target: "elm.text.1";
8207          }
8208          program { name: "go_urgeny_unread";
8209             signal: "elm,state,urgency_unread";
8210             source: "elm";
8211             action: STATE_SET "urgency_unread" 0.0;
8212             target: "elm.text.1";
8213          }
8214          program { name: "go_urgency_read";
8215             signal: "elm,state,urgency_read";
8216             source: "elm";
8217             action: STATE_SET "urgency_read" 0.0;
8218             target: "elm.text.1";
8219          }
8220          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8221       }
8222    }
8223
8224 // 3.2.24
8225    group { name: "elm/genlist/item/2text.3icon.2/default";
8226       alias: "elm/genlist/item_odd/2text.3icon.2/default";
8227       alias: "elm/genlist/item_compress/2text.3icon.2/default";
8228       alias: "elm/genlist/item_compress_odd/2text.3icon.2/default";
8229       data.item: "stacking" "above";
8230       data.item: "selectraise" "on";
8231       data.item: "texts" "elm.text.1 elm.text.2";
8232       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
8233       data.item: "flips" "elm.flip.content";
8234       images {
8235          image: "00_list_bar_press_1x80.png" COMP;
8236       }
8237       parts {
8238          GENLIST_PART_BASE( 129 )
8239          GENLIST_PART_BG_IMAGE
8240          GENLIST_PART_BOTTOM_LINE
8241          GENLIST_PART_PADDING_TOP( 10 )
8242          GENLIST_PART_PADDING_BOTTOM( 10 )
8243          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8244          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8245          part { name: "elm.swallow.colorbar";
8246             clip_to: "disclip";
8247             type: SWALLOW;
8248             scale: 1;
8249             description { state: "default" 0.0;
8250                min: 10 21;
8251                fixed: 1 1;
8252                rel2.relative: 0.0 0.0;
8253                align: 0.0 0.0;
8254             }
8255          }
8256          part { name: "elm.icon.2";
8257             clip_to: "disclip";
8258             type: SWALLOW;
8259             scale: 1;
8260             GENLIST_DESCRIPTION_RTB("elm.padding.right", "elm.padding.top", "elm.padding.bottom",
8261                fixed: 1 1;
8262             )
8263             GENLIST_DESCRIPTION_FLIP_ENABLED
8264          }
8265          GENLIST_PART_PADDING_RIGHT_TO("elm.padding.icon2.left", "elm.icon.2", GENLIST_PADDING_16_INC)
8266          part { name: "elm.text.2";
8267             clip_to: "disclip";
8268             type: TEXT;
8269             mouse_events: 0;
8270             scale: 1;
8271             GENLIST_DESCRIPTION_LRB("elm.padding.left", "elm.padding.icon2.left", "elm.padding.bottom",
8272                min: 0 GENLIST_SIZE_48_INC;
8273                fixed: 0 1;
8274                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
8275                text {
8276                   font: "SLP:style=Medium";
8277                   size: GENLIST_LIST_SUB_TEXT_SIZE;
8278                   min: 0 1;
8279                   align: 0.0 0.5;
8280                   text_class: "slp_medium";
8281                }
8282             )
8283             description { state: "selected" 0.0;
8284                inherit: "default" 0.0;
8285                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
8286             }
8287             GENLIST_DESCRIPTION_FLIP_ENABLED
8288          }
8289          // virtual padding for limiting flexible text
8290          GENLIST_PART_PADDING_RIGHT_TO("elm.padding.text1.right", "elm.icon.2", GENLIST_ICON_SMALL_SIZE+32)
8291          part { name: "elm.text.1";
8292             clip_to: "disclip";
8293             type: TEXT;
8294             mouse_events: 0;
8295             scale: 1;
8296             GENLIST_DESCRIPTION("elm.padding.left", "elm.padding.text1.right", "elm.padding.top", "elm.text.2",
8297                align: 0 0.5;
8298                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
8299                text {
8300                   font: "SLP:style=Roman";
8301                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
8302                   min: 0 1;
8303                   max: 1 1;
8304                   align: 0 0.5;
8305                   text_class: "list_item";
8306                }
8307             )
8308             description { state: "selected" 0.0;
8309                inherit: "default" 0.0;
8310                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
8311             }
8312             GENLIST_DESCRIPTION_FLIP_ENABLED
8313          }
8314          GENLIST_PART_PADDING_LEFT_TO("elm.padding.icon1.left", "elm.text.1", GENLIST_PADDING_16_INC)
8315          part { name: "elm.icon.1";
8316             clip_to: "disclip";
8317             type: SWALLOW;
8318             scale: 1;
8319             GENLIST_DESCRIPTION("elm.padding.icon1.left", "elm.padding.icon2.left", "elm.padding.top", "elm.text.2",
8320                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8321                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8322                fixed: 1 1;
8323                align: 0 0.5;
8324             )
8325             GENLIST_DESCRIPTION_FLIP_ENABLED
8326          }
8327          GENLIST_PART_FLIP
8328          GENLIST_PART_DISCLIP
8329       }
8330       programs {
8331          // signal: elm,state,%s,active
8332          //   a "check" item named %s went active
8333          // signal: elm,state,%s,passive
8334          //   a "check" item named %s went passive
8335          // default is passive
8336          program { name: "go_active";
8337             signal: "elm,state,selected";
8338             source: "elm";
8339             action: STATE_SET "selected" 0.0;
8340             target: "bg_image";
8341             target: "elm.text.1";
8342             target: "elm.text.2";
8343             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8344          }
8345          program { name: "go_passive";
8346             signal: "elm,state,unselected";
8347             source: "elm";
8348             action: STATE_SET "default" 0.0;
8349             target: "bg_image";
8350             target: "elm.text.1";
8351             target: "elm.text.2";
8352             transition: LINEAR 0.1;
8353          }
8354          program { name: "go_disabled";
8355             signal: "elm,state,disabled";
8356             source: "elm";
8357             action: STATE_SET "disabled" 0.0;
8358             target: "disclip";
8359          }
8360          program { name: "go_enabled";
8361             signal: "elm,state,enabled";
8362             source: "elm";
8363             action: STATE_SET "default" 0.0;
8364             target: "disclip";
8365          }
8366          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
8367          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8368       }
8369    }
8370
8371 // 3.2.25
8372    group { name: "elm/genlist/item/2text.3icon.3/default";
8373       alias: "elm/genlist/item_odd/2text.3icon.3/default";
8374       alias: "elm/genlist/item_compress/2text.3icon.3/default";
8375       alias: "elm/genlist/item_compress_odd/2text.3icon.3/default";
8376       data.item: "stacking" "above";
8377       data.item: "selectraise" "on";
8378       data.item: "texts" "elm.text.1 elm.text.2";
8379       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
8380       data.item: "flips" "elm.flip.content";
8381       images {
8382          image: "00_list_bar_press_1x80.png" COMP;
8383       }
8384       parts {
8385          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8386          GENLIST_PART_BG_IMAGE
8387          GENLIST_PART_BOTTOM_LINE
8388          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8389          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8390          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8391          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8392          part { name: "elm.swallow.colorbar";
8393             clip_to: "disclip";
8394             type: SWALLOW;
8395             scale: 1;
8396             description { state: "default" 0.0;
8397                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
8398                fixed: 1 1;
8399                rel2.relative: 0.0 0.0;
8400                align: 0.0 0.0;
8401             }
8402          }
8403          part { name: "elm.icon.1";
8404             clip_to: "disclip";
8405             type: SWALLOW;
8406             scale: 1;
8407             description { state: "default" 0.0;
8408                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8409                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8410                fixed: 1 1;
8411                rel1 {
8412                   relative: 1.0 1.0;
8413                   to_x: "elm.padding.left";
8414                   to_y: "elm.padding.top";
8415                }
8416                rel2 {
8417                   relative: 1.0 0.0;
8418                   to_x: "elm.padding.left";
8419                   to_y: "elm.padding.bottom";
8420                }
8421                align: 0.0 0.5;
8422             }
8423             GENLIST_DESCRIPTION_FLIP_ENABLED
8424          }
8425          part { name: "elm.padding.icon1.right";
8426             clip_to: "disclip";
8427             type: RECT;
8428             scale: 1;
8429             description { state: "default" 0.0;
8430                min: GENLIST_PADDING_16_INC 0;
8431                fixed: 1 0;
8432                rel1 {
8433                   relative: 1.0 0.0;
8434                   to_x: "elm.icon.1";
8435                }
8436                rel2.to_x: "elm.icon.1";
8437                align: 0.0 0.0;
8438                visible: 0;
8439             }
8440          }
8441          part { name: "elm.icon.2";
8442             clip_to: "disclip";
8443             type: SWALLOW;
8444             scale: 1;
8445             description { state: "default" 0.0;
8446                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8447                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8448                fixed: 1 1;
8449                rel1 {
8450                   relative: 0.0 1.0;
8451                   to_x: "elm.padding.right";
8452                   to_y: "elm.padding.top";
8453                }
8454                rel2 {
8455                   relative: 0.0 1.0;
8456                   to_x: "elm.padding.right";
8457                   to_y: "elm.padding.bottom";
8458                }
8459                align: 1.0 0.5;
8460             }
8461             GENLIST_DESCRIPTION_FLIP_ENABLED
8462          }
8463          part { name: "elm.padding.icon2.left";
8464             clip_to: "disclip";
8465             type: RECT;
8466             scale: 1;
8467             description { state: "default" 0.0;
8468                min: GENLIST_PADDING_16_INC 0;
8469                fixed: 1 0;
8470                rel1 {
8471                   relative: 0.0 0.0;
8472                   to_x: "elm.icon.2";
8473                }
8474                rel2.to_x: "elm.icon.2";
8475                align: 1.0 0.0;
8476                visible: 0;
8477             }
8478          }
8479          part { name: "elm.text.1";
8480             clip_to: "disclip";
8481             type: TEXT;
8482             mouse_events: 0;
8483             scale: 1;
8484             description { state: "default" 0.0;
8485                min: 0 GENLIST_SIZE_61_INC;
8486                fixed: 1 1;
8487                rel1 {
8488                   relative: 1.0 1.0;
8489                   to_x: "elm.padding.icon1.right";
8490                   to_y: "elm.padding.top";
8491                }
8492                rel2 {
8493                   relative: 0.0 1.0;
8494                   to_x: "elm.padding.icon2.left";
8495                   to_y: "elm.padding.top";
8496                }
8497                align: 0.0 0.0;
8498                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
8499                text {
8500                   font: "SLP:style=Roman";
8501                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
8502                   min: 0 1;
8503                   align: 0.0 0.5;
8504                   text_class: "list_item";
8505                }
8506             }
8507             description { state: "selected" 0.0;
8508                inherit: "default" 0.0;
8509                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
8510             }
8511             GENLIST_DESCRIPTION_FLIP_ENABLED
8512          }
8513          part { name: "elm.text.2";
8514             clip_to: "disclip";
8515             type: TEXT;
8516             mouse_events: 0;
8517             scale: 1;
8518             description { state: "default" 0.0;
8519                rel1 {
8520                   relative: 1.0 1.0;
8521                   to_x: "elm.padding.icon1.right";
8522                   to_y: "elm.text.1";
8523                }
8524                rel2 {
8525                   relative: 0.0 0.0;
8526                   to_x: "elm.padding.icon2.left";
8527                   to_y: "elm.padding.bottom";
8528                }
8529                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
8530                text {
8531                   font: "SLP:style=Medium";
8532                   size: GENLIST_FONT_32_INC;
8533                   min: 0 1;
8534                   align: 0.0 0.5;
8535                   text_class: "slp_medium";
8536                }
8537             }
8538             description { state: "selected" 0.0;
8539                inherit: "default" 0.0;
8540                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
8541             }
8542             GENLIST_DESCRIPTION_FLIP_ENABLED
8543          }
8544          GENLIST_PART_FLIP
8545          GENLIST_PART_DISCLIP
8546       }
8547       programs {
8548          // signal: elm,state,%s,active
8549          //   a "check" item named %s went active
8550          // signal: elm,state,%s,passive
8551          //   a "check" item named %s went passive
8552          // default is passive
8553          program { name: "go_active";
8554             signal: "elm,state,selected";
8555             source: "elm";
8556             action: STATE_SET "selected" 0.0;
8557             target: "bg_image";
8558             target: "elm.text.1";
8559             target: "elm.text.2";
8560             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8561          }
8562          program { name: "go_passive";
8563             signal: "elm,state,unselected";
8564             source: "elm";
8565             action: STATE_SET "default" 0.0;
8566             target: "bg_image";
8567             target: "elm.text.1";
8568             target: "elm.text.2";
8569             transition: LINEAR 0.1;
8570          }
8571          program { name: "go_disabled";
8572             signal: "elm,state,disabled";
8573             source: "elm";
8574             action: STATE_SET "disabled" 0.0;
8575             target: "disclip";
8576          }
8577          program { name: "go_enabled";
8578             signal: "elm,state,enabled";
8579             source: "elm";
8580             action: STATE_SET "default" 0.0;
8581             target: "disclip";
8582          }
8583          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
8584          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8585       }
8586    }
8587
8588 // 3.2.26
8589    group { name: "elm/genlist/item/2text.2icon.6/default";
8590       alias: "elm/genlist/item_odd/2text.2icon.6/default";
8591       alias: "elm/genlist/item_compress/2text.2icon.6/default";
8592       alias: "elm/genlist/item_compress_odd/2text.2icon.6/default";
8593       data.item: "stacking" "above";
8594       data.item: "selectraise" "on";
8595       data.item: "texts" "elm.text.1 elm.text.2";
8596       data.item: "contents" "elm.icon.1 elm.icon.2";
8597       data.item: "flips" "elm.flip.content";
8598       images {
8599          image: "00_list_bar_press_1x80.png" COMP;
8600       }
8601       parts {
8602          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8603          GENLIST_PART_BG_IMAGE
8604          GENLIST_PART_BOTTOM_LINE
8605          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8606          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8607          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8608          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8609          part { name: "elm.icon.1";
8610             clip_to: "disclip";
8611             type: SWALLOW;
8612             scale: 1;
8613             description { state: "default" 0.0;
8614                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8615                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8616                fixed: 1 1;
8617                rel1 {
8618                   relative: 1.0 1.0;
8619                   to_x: "elm.padding.left";
8620                   to_y: "elm.padding.top";
8621                }
8622                rel2 {
8623                   relative: 1.0 0.0;
8624                   to_x: "elm.padding.left";
8625                   to_y: "elm.padding.bottom";
8626                }
8627                align: 0.0 0.5;
8628             }
8629             GENLIST_DESCRIPTION_FLIP_ENABLED
8630          }
8631          part { name: "elm.padding.icon1.right";
8632             clip_to: "disclip";
8633             type: RECT;
8634             scale: 1;
8635             description { state: "default" 0.0;
8636                min: GENLIST_PADDING_16_INC 0;
8637                fixed: 1 0;
8638                rel1 {
8639                   relative: 1.0 0.0;
8640                   to_x: "elm.icon.1";
8641                }
8642                rel2.to_x: "elm.icon.1";
8643                align: 0.0 0.0;
8644                visible: 0;
8645             }
8646          }
8647          part { name: "elm.text.1";
8648             clip_to: "disclip";
8649             type: TEXT;
8650             mouse_events: 0;
8651             scale: 1;
8652             description { state: "default" 0.0;
8653                min: 0 GENLIST_SIZE_61_INC;
8654                fixed: 0 1;
8655                rel1 {
8656                   relative: 1.0 1.0;
8657                   to_x: "elm.padding.icon1.right";
8658                   to_y: "elm.padding.top";
8659                }
8660                rel2 {
8661                   relative: 0.0 1.0;
8662                   to_x: "elm.padding.right";
8663                   to_y: "elm.padding.top";
8664                }
8665                align: 0.0 0.0;
8666                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
8667                text {
8668                   font: "SLP:style=Roman";
8669                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
8670                   min: 0 1;
8671                   align: 0.0 0.5;
8672                   text_class: "list_item";
8673                }
8674             }
8675             description { state: "selected" 0.0;
8676                inherit: "default" 0.0;
8677                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
8678             }
8679             GENLIST_DESCRIPTION_FLIP_ENABLED
8680          }
8681          part { name: "elm.icon.2";
8682             clip_to: "disclip";
8683             type: SWALLOW;
8684             scale: 1;
8685             description { state: "default" 0.0;
8686                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8687                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8688                fixed: 1 1;
8689                rel1 {
8690                   relative: 0.0 1.0;
8691                   to_x: "elm.padding.right";
8692                   to_y: "elm.text.1";
8693                }
8694                rel2 {
8695                   relative: 0.0 1.0;
8696                   to_x: "elm.padding.right";
8697                   to_y: "elm.padding.bottom";
8698                }
8699                align: 1.0 0.5;
8700             }
8701             GENLIST_DESCRIPTION_FLIP_ENABLED
8702          }
8703          part { name: "elm.padding.icon2.left";
8704             type: RECT;
8705             scale: 1;
8706             description { state: "default" 0.0;
8707                min: GENLIST_PADDING_16_INC 0;
8708                fixed: 1 0;
8709                rel1 {
8710                   relative: 0.0 0.0;
8711                   to_x: "elm.icon.2";
8712                }
8713                rel2.to_x: "elm.icon.2";
8714                align: 1.0 0.0;
8715                visible: 0;
8716             }
8717          }
8718          part { name: "elm.text.2";
8719             clip_to: "disclip";
8720             type: TEXT;
8721             mouse_events: 0;
8722             scale: 1;
8723             description { state: "default" 0.0;
8724                rel1 {
8725                   relative: 1.0 1.0;
8726                   to_x: "elm.padding.icon1.right";
8727                   to_y: "elm.text.1";
8728                }
8729                rel2 {
8730                   relative: 0.0 0.0;
8731                   offset: 0 0;
8732                   to_x: "elm.padding.icon2.left";
8733                   to_y: "elm.padding.bottom";
8734                }
8735                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
8736                text {
8737                   font: "SLP:style=Medium";
8738                   size: GENLIST_FONT_32_INC;
8739                   min: 0 1;
8740                   align: 0.0 0.5;
8741                   text_class: "slp_medium";
8742                }
8743             }
8744             description { state: "selected" 0.0;
8745                inherit: "default" 0.0;
8746                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
8747             }
8748             GENLIST_DESCRIPTION_FLIP_ENABLED
8749          }
8750          GENLIST_PART_FLIP
8751          GENLIST_PART_DISCLIP
8752       }
8753       programs {
8754          // signal: elm,state,%s,active
8755          //   a "check" item named %s went active
8756          // signal: elm,state,%s,passive
8757          //   a "check" item named %s went passive
8758          // default is passive
8759          program { name: "go_active";
8760             signal: "elm,state,selected";
8761             source: "elm";
8762             action: STATE_SET "selected" 0.0;
8763             target: "bg_image";
8764             target: "elm.text.1";
8765             target: "elm.text.2";
8766             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8767          }
8768          program { name: "go_passive";
8769             signal: "elm,state,unselected";
8770             source: "elm";
8771             action: STATE_SET "default" 0.0;
8772             target: "bg_image";
8773             target: "elm.text.1";
8774             target: "elm.text.2";
8775             transition: LINEAR 0.1;
8776          }
8777          program { name: "go_disabled";
8778             signal: "elm,state,disabled";
8779             source: "elm";
8780             action: STATE_SET "disabled" 0.0;
8781             target: "disclip";
8782          }
8783          program { name: "go_enabled";
8784             signal: "elm,state,enabled";
8785             source: "elm";
8786             action: STATE_SET "default" 0.0;
8787             target: "disclip";
8788          }
8789          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
8790          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8791       }
8792    }
8793
8794    group { name: "elm/genlist/item_compress/2text.2icon.6.tb/default";
8795       inherit: "elm/genlist/item/2text.2icon.6/default";
8796       parts {
8797          part { name: "elm.text.1";
8798             clip_to: "disclip";
8799             type: TEXTBLOCK;
8800             mouse_events: 0;
8801             scale: 1;
8802             description { state: "default" 0.0;
8803                min: 0 GENLIST_SIZE_61_INC;
8804                fixed: 0 1;
8805                rel1 {
8806                   relative: 1.0 1.0;
8807                   to_x: "elm.padding.icon1.right";
8808                   to_y: "elm.padding.top";
8809                }
8810                rel2 {
8811                   relative: 0.0 1.0;
8812                   to_x: "elm.padding.right";
8813                   to_y: "elm.padding.top";
8814                }
8815                align: 0.0 0.0;
8816                text {
8817                   style: "genlist_style_list_main_text_unread";
8818                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
8819                   min: 0 1;
8820                   align: 0.0 0.5;
8821                   text_class: "list_item";
8822                }
8823             }
8824             description { state: "selected" 0.0;
8825                inherit: "default" 0.0;
8826                text.style: "genlist_style_list_main_text_focus";
8827             }
8828             GENLIST_DESCRIPTION_FLIP_ENABLED
8829          }
8830          part { name: "elm.text.2";
8831             clip_to: "disclip";
8832             type: TEXTBLOCK;
8833             mouse_events: 0;
8834             scale: 1;
8835             description { state: "default" 0.0;
8836                rel1 {
8837                   relative: 1.0 1.0;
8838                   to_x: "elm.padding.icon1.right";
8839                   to_y: "elm.text.1";
8840                }
8841                rel2 {
8842                   relative: 0.0 0.0;
8843                   offset: 0 0;
8844                   to_x: "elm.padding.icon2.left";
8845                   to_y: "elm.padding.bottom";
8846                }
8847                text {
8848                   style: "genlist_style_list_main_text_unread";
8849                   size: GENLIST_FONT_32_INC;
8850                   min: 0 1;
8851                   align: 0.0 0.5;
8852                   text_class: "slp_medium";
8853                }
8854             }
8855             description { state: "selected" 0.0;
8856                inherit: "default" 0.0;
8857                text.style: "genlist_style_list_main_text_focus";
8858             }
8859             GENLIST_DESCRIPTION_FLIP_ENABLED
8860          }
8861       }
8862    }
8863
8864 // 3.2.27
8865    group { name: "elm/genlist/item/2text.1icon.12/default";
8866       alias: "elm/genlist/item_odd/2text.1icon.12/default";
8867       alias: "elm/genlist/item_compress/2text.1icon.12/default";
8868       alias: "elm/genlist/item_compress_odd/2text.1icon.12/default";
8869       data.item: "stacking" "above";
8870       data.item: "selectraise" "on";
8871       data.item: "texts" "elm.text.1 elm.text.2";
8872       data.item: "contents" "elm.icon";
8873       data.item: "flips" "elm.flip.content";
8874       images {
8875          image: "00_list_bar_press_1x80.png" COMP;
8876       }
8877       parts {
8878          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8879          GENLIST_PART_BG_IMAGE
8880          GENLIST_PART_BOTTOM_LINE
8881          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8882          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8883          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8884          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8885          part { name: "elm.icon";
8886             clip_to: "disclip";
8887             type: SWALLOW;
8888             scale: 1;
8889             description { state: "default" 0.0;
8890                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
8891                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
8892                fixed: 1 1;
8893                rel1 {
8894                   relative: 0.0 1.0;
8895                   to_x: "elm.padding.right";
8896                   to_y: "elm.padding.top";
8897                }
8898                rel2 {
8899                   relative: 0.0 0.0;
8900                   to_x: "elm.padding.right";
8901                   to_y: "elm.padding.bottom";
8902                }
8903                align: 1.0 0.5;
8904             }
8905             GENLIST_DESCRIPTION_FLIP_ENABLED
8906          }
8907          part { name: "elm.padding.icon.left";
8908             clip_to: "disclip";
8909             type: RECT;
8910             scale: 1;
8911             description { state: "default" 0.0;
8912                min: GENLIST_PADDING_16_INC 0;
8913                fixed: 1 0;
8914                rel1.to_x: "elm.icon";
8915                rel2 {
8916                   relative: 0.0 1.0;
8917                   to_x: "elm.icon";
8918                }
8919                align: 1.0 0.0;
8920                visible: 0;
8921             }
8922          }
8923          part { name: "elm.text.1";
8924             clip_to: "disclip";
8925             type: TEXT;
8926             mouse_events: 0;
8927             scale: 1;
8928             description { state: "default" 0.0;
8929                min: 0 GENLIST_SIZE_61_INC;
8930                fixed: 0 1;
8931                rel1 {
8932                   relative: 1.0 1.0;
8933                   to_x: "elm.padding.left";
8934                   to_y: "elm.padding.top";
8935                }
8936                rel2 {
8937                   relative: 0.0 1.0;
8938                   to_x: "elm.padding.icon.left";
8939                   to_y: "elm.padding.top";
8940                }
8941                align: 0.0 0.0;
8942                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
8943                text {
8944                   font: "SLP:style=Roman";
8945                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
8946                   min: 0 1;
8947                   align: 0.0 0.5;
8948                   text_class: "list_item";
8949                }
8950             }
8951             description { state: "selected" 0.0;
8952                inherit: "default" 0.0;
8953                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
8954             }
8955             GENLIST_DESCRIPTION_FLIP_ENABLED
8956          }
8957          part { name: "elm.text.2";
8958             clip_to: "disclip";
8959             type: TEXT;
8960             mouse_events: 0;
8961             scale: 1;
8962             description { state: "default" 0.0;
8963                rel1 {
8964                   relative: 1.0 1.0;
8965                   to_x: "elm.padding.left";
8966                   to_y: "elm.text.1";
8967                }
8968                rel2 {
8969                   relative: 0.0 0.0;
8970                   to_x: "elm.padding.icon.left";
8971                   to_y: "elm.padding.bottom";
8972                }
8973                align: 0.0 0.0;
8974                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
8975                text {
8976                   font: "SLP:style=Medium";
8977                   size: GENLIST_FONT_32_INC;
8978                   min: 0 1;
8979                   align: 0.0 0.5;
8980                   text_class: "slp_medium";
8981                }
8982             }
8983             description { state: "selected" 0.0;
8984                inherit: "default" 0.0;
8985                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
8986             }
8987             GENLIST_DESCRIPTION_FLIP_ENABLED
8988          }
8989          GENLIST_PART_FLIP
8990          GENLIST_PART_DISCLIP
8991       }
8992       programs {
8993          // signal: elm,state,%s,active
8994          //   a "check" item named %s went active
8995          // signal: elm,state,%s,passive
8996          //   a "check" item named %s went passive
8997          // default is passive
8998          program { name: "go_active";
8999             signal: "elm,state,selected";
9000             source: "elm";
9001             action: STATE_SET "selected" 0.0;
9002             target: "bg_image";
9003             target: "elm.text.1";
9004             target: "elm.text.2";
9005             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9006          }
9007          program { name: "go_passive";
9008             signal: "elm,state,unselected";
9009             source: "elm";
9010             action: STATE_SET "default" 0.0;
9011             target: "bg_image";
9012             target: "elm.text.1";
9013             target: "elm.text.2";
9014             transition: LINEAR 0.1;
9015          }
9016          program { name: "go_disabled";
9017             signal: "elm,state,disabled";
9018             source: "elm";
9019             action: STATE_SET "disabled" 0.0;
9020             target: "disclip";
9021          }
9022          program { name: "go_enabled";
9023             signal: "elm,state,enabled";
9024             source: "elm";
9025             action: STATE_SET "default" 0.0;
9026             target: "disclip";
9027          }
9028          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
9029          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9030       }
9031    }
9032
9033 // ???
9034    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
9035    group { name: "elm/genlist/item/2text.1icon.13/default";
9036       alias: "elm/genlist/item_odd/2text.1icon.13/default";
9037       alias: "elm/genlist/item_compress/2text.1icon.13/default";
9038       alias: "elm/genlist/item_compress_odd/2text.1icon.13/default";
9039       data.item: "stacking" "above";
9040       data.item: "selectraise" "on";
9041       data.item: "texts" "elm.text elm.text.msgcount";
9042       data.item: "contents" "elm.icon";
9043       data.item: "flips" "elm.flip.content";
9044       images {
9045          image: "00_list_bar_press_1x80.png" COMP;
9046       }
9047       parts {
9048          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
9049          GENLIST_PART_BG
9050          GENLIST_PART_BG_IMAGE
9051          GENLIST_PART_BOTTOM_LINE
9052          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9053          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9054          part { name: "elm.icon";
9055             clip_to: "disclip";
9056             type: SWALLOW;
9057             scale: 1;
9058             description { state: "default" 0.0;
9059                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9060                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9061                fixed: 1 1;
9062                rel1 {
9063                   relative: 1.0 0.0;
9064                   to_x: "elm.padding.left";
9065                }
9066                rel2 {
9067                   relative: 1.0 1.0;
9068                   to_x: "elm.padding.left";
9069                }
9070                align: 0.0 0.5;
9071             }
9072             GENLIST_DESCRIPTION_FLIP_ENABLED
9073          }
9074          part { name: "elm.text.msgcount";
9075             clip_to: "disclip";
9076             type: TEXT;
9077             mouse_events: 0;
9078             scale: 1;
9079             description {
9080                state: "default" 0.0;
9081                fixed: 1 1;
9082                align: 0 0;
9083                color: GENLIST_PART_EMAIL_MSGCOUNT_TEXT_COLOR_INC;
9084                rel1.to: "elm.icon";
9085                rel2.to: "elm.icon";
9086                text {
9087                   font: "SLP:style=Medium";
9088                   size: GENLIST_FONT_28_INC;
9089                   min: 0 1;
9090                   align: 0.5 0.5;
9091                   text_class: "slp_medium";
9092                }
9093                align: 0.0 0.5;
9094             }
9095          }
9096          part { name: "elm.padding.icon.right";
9097             clip_to: "disclip";
9098             type: RECT;
9099             scale: 1;
9100             description {
9101                state: "default" 0.0;
9102                min: GENLIST_SIZE_16_INC 0;
9103                fixed: 1 0;
9104                rel1 {
9105                   relative: 1.0 0.0;
9106                   to_x: "elm.icon";
9107                }
9108                rel2.to_x: "elm.icon";
9109                visible: 0;
9110             }
9111          }
9112          part { name: "elm.text";
9113             clip_to: "disclip";
9114             type: TEXT;
9115             mouse_events: 0;
9116             scale: 1;
9117             description { state: "default" 0.0;
9118                rel1 {
9119                   relative: 1.0 0.0;
9120                   to_x: "elm.padding.icon.right";
9121                }
9122                rel2 {
9123                   relative: 0.0 1.0;
9124                   to_x: "elm.padding.right";
9125                }
9126                align: 0.0 0.5;
9127                color: GENLIST_UNREAD_EMAIL_COLOR;
9128                text {
9129                   font: "SLP:style=Roman";
9130                   size: GENLIST_UNREAD_EMAIL_SIZE;
9131                   min: 0 1;
9132                   align: 0.0 0.5;
9133                   text_class: "list_item";
9134                }
9135             }
9136             GENLIST_DESCRIPTION_FLIP_ENABLED
9137          }
9138          GENLIST_PART_FLIP
9139          GENLIST_PART_DISCLIP
9140       }
9141       programs {
9142          program { name: "go_active";
9143             signal: "elm,state,selected";
9144             source: "elm";
9145             action: STATE_SET "selected" 0.0;
9146             target: "bg_image";
9147             target: "elm.text";
9148             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9149          }
9150          program { name: "go_passive";
9151             signal: "elm,state,unselected";
9152             source: "elm";
9153             action: STATE_SET "default" 0.0;
9154             target: "bg_image";
9155             target: "elm.text";
9156             transition: LINEAR 0.1;
9157          }
9158          program { name: "go_disabled";
9159             signal: "elm,state,disabled";
9160             source: "elm";
9161             action: STATE_SET "disabled" 0.0;
9162             target: "disclip";
9163          }
9164          program { name: "go_enabled";
9165             signal: "elm,state,enabled";
9166             source: "elm";
9167             action: STATE_SET "default" 0.0;
9168             target: "disclip";
9169          }
9170          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9171       }
9172    }
9173
9174 // ???
9175    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
9176    group { name: "elm/genlist/item/2text.1icon.14/default";
9177       alias: "elm/genlist/item_odd/2text.1icon.14/default";
9178       alias: "elm/genlist/item_compress/2text.1icon.14/default";
9179       alias: "elm/genlist/item_compress_odd/2text.1icon.14/default";
9180       data.item: "stacking" "above";
9181       data.item: "selectraise" "on";
9182       data.item: "texts" "elm.text elm.text.msgcount";
9183       data.item: "contents" "elm.check elm.icon";
9184       data.item: "flips" "elm.flip.content";
9185       images {
9186          image: "00_list_bar_press_1x80.png" COMP;
9187       }
9188       parts {
9189          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
9190          GENLIST_PART_BG
9191          GENLIST_PART_BG_IMAGE
9192          GENLIST_PART_BOTTOM_LINE
9193          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9194          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9195          part { name: "elm.check";
9196             clip_to: "disclip";
9197             type: SWALLOW;
9198             mouse_events: 1;
9199             scale: 1;
9200             description { state: "default" 0.0;
9201                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
9202                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
9203                fixed: 1 1;
9204                rel1 {
9205                   relative: 1.0 0.0;
9206                   to_x: "elm.padding.left";
9207                }
9208                rel2 {
9209                   relative: 1.0 1.0;
9210                   to_x: "elm.padding.left";
9211                }
9212                align: 0.0 0.5;
9213             }
9214             GENLIST_DESCRIPTION_FLIP_ENABLED
9215          }
9216
9217          part { name: "elm.padding.icon.checkbox.right";
9218             clip_to: "disclip";
9219             type: RECT;
9220             scale: 1;
9221             description { state: "default" 0.0;
9222                min: GENLIST_PADDING_16_INC 0;
9223                fixed: 1 0;
9224                rel1 {
9225                   relative: 1.0 0.0;
9226                   to_x: "elm.check";
9227                }
9228                rel2 {
9229                   relative: 1.0 1.0;
9230                   to_x:  "elm.check";
9231                }
9232                align: 1.0 0.0;
9233                visible: 0;
9234             }
9235          }
9236          part { name: "elm.icon";
9237             clip_to: "disclip";
9238             type: SWALLOW;
9239             scale: 1;
9240             description { state: "default" 0.0;
9241                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9242                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9243                fixed: 1 1;
9244                rel1.to_x: "elm.padding.right";
9245                rel2 {
9246                   relative: 0.0 1.0;
9247                   to_x: "elm.padding.right";
9248                }
9249                align: 1.0 0.5;
9250             }
9251             GENLIST_DESCRIPTION_FLIP_ENABLED
9252          }
9253          part { name: "elm.text.msgcount";
9254             clip_to: "disclip";
9255             type: TEXT;
9256             mouse_events: 0;
9257             scale: 1;
9258             description {
9259                state: "default" 0.0;
9260                fixed: 1 1;
9261                align: 0 0;
9262                color: GENLIST_PART_EMAIL_MSGCOUNT_TEXT_COLOR_INC;
9263                rel1.to: "elm.icon";
9264                rel2.to: "elm.icon";
9265                text {
9266                   font: "SLP:style=Medium";
9267                   size: GENLIST_FONT_28_INC;
9268                   min: 0 1;
9269                   align: 0.5 0.5;
9270                   text_class: "slp_medium";
9271                }
9272                align: 0.0 0.5;
9273             }
9274          }
9275          part { name: "elm.padding.icon.left";
9276             clip_to: "disclip";
9277             type: RECT;
9278             scale: 1;
9279             description {
9280                state: "default" 0.0;
9281                min: GENLIST_SIZE_16_INC 0;
9282                fixed: 1 0;
9283                rel1.to_x: "elm.icon";
9284                rel2 {
9285                   relative: 0.0 1.0;
9286                   to_x: "elm.icon";
9287                }
9288                align: 1.0 0.0;
9289                visible: 0;
9290             }
9291          }
9292          part { name: "elm.text";
9293             clip_to: "disclip";
9294             type: TEXTBLOCK;
9295             mouse_events: 0;
9296             scale: 1;
9297             description { state: "default" 0.0;
9298                rel1 {
9299                   relative: 1.0 0.0;
9300                   to_x: "elm.padding.icon.checkbox.right";
9301                }
9302                rel2 {
9303                   relative: 0.0 1.0;
9304                   to_x: "elm.padding.icon.left";
9305                }
9306                align: 0.0 0.5;
9307                text {
9308                   style: "genlist_style_email_unread";
9309                   min: 0 1;
9310                   max: 0 1;
9311                   align: 0.0 0.5;
9312                }
9313             }
9314             description { state: "selected" 0.0;
9315                inherit: "default" 0.0;
9316                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
9317             }
9318             GENLIST_DESCRIPTION_FLIP_ENABLED
9319          }
9320          GENLIST_PART_FLIP
9321          GENLIST_PART_DISCLIP
9322       }
9323       programs {
9324          program { name: "go_active";
9325             signal: "elm,state,selected";
9326             source: "elm";
9327             action: STATE_SET "selected" 0.0;
9328             target: "bg_image";
9329             target: "elm.text";
9330             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9331          }
9332          program { name: "go_passive";
9333             signal: "elm,state,unselected";
9334             source: "elm";
9335             action: STATE_SET "default" 0.0;
9336             target: "bg_image";
9337             target: "elm.text";
9338             transition: LINEAR 0.1;
9339          }
9340          program { name: "go_disabled";
9341             signal: "elm,state,disabled";
9342             source: "elm";
9343             action: STATE_SET "disabled" 0.0;
9344             target: "disclip";
9345          }
9346          program { name: "go_enabled";
9347             signal: "elm,state,enabled";
9348             source: "elm";
9349             action: STATE_SET "default" 0.0;
9350             target: "disclip";
9351          }
9352          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9353       }
9354    }
9355
9356 // 3.2.28
9357    group { name: "elm/genlist/item/2text.3icon/default";
9358       alias: "elm/genlist/item_odd/2text.3icon/default";
9359       alias: "elm/genlist/item_compress/2text.3icon/default";
9360       alias: "elm/genlist/item_compress_odd/2text.3icon/default";
9361       data.item: "stacking" "above";
9362       data.item: "selectraise" "on";
9363       data.item: "texts" "elm.text.1 elm.text.2";
9364       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
9365       data.item: "flips" "elm.flip.content";
9366       images {
9367          image: "00_list_bar_press_1x80.png" COMP;
9368       }
9369       parts {
9370          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9371          GENLIST_PART_BG_IMAGE
9372          GENLIST_PART_BOTTOM_LINE
9373          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9374          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9375          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9376          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9377          part { name: "elm.icon.3";
9378             clip_to: "disclip";
9379             type: SWALLOW;
9380             scale: 1;
9381             description { state: "default" 0.0;
9382                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
9383                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
9384                fixed: 1 1;
9385                rel1 {
9386                   relative: 0.0 1.0;
9387                   to_x: "elm.padding.right";
9388                   to_y: "elm.padding.top";
9389                }
9390                rel2 {
9391                   relative: 0.0 1.0;
9392                   to_x: "elm.padding.right";
9393                   to_y: "elm.padding.bottom";
9394                }
9395                align: 1.0 0.5;
9396             }
9397             GENLIST_DESCRIPTION_FLIP_ENABLED
9398          }
9399          part { name: "elm.padding.icon3.left";
9400             clip_to: "disclip";
9401             type: RECT;
9402             scale: 1;
9403             description { state: "default" 0.0;
9404                min: GENLIST_PADDING_16_INC 0;
9405                fixed: 1 0;
9406                rel1.to_x: "elm.icon.3";
9407                rel2 {
9408                   relative: 0.0 1.0;
9409                   to_x: "elm.icon.3";
9410                }
9411                align: 1.0 0.0;
9412                visible: 0;
9413             }
9414          }
9415          part { name: "elm.text.2";
9416             clip_to: "disclip";
9417             type: TEXT;
9418             mouse_events: 0;
9419             scale: 1;
9420             description { state: "default" 0.0;
9421                min: 0 GENLIST_SIZE_48_INC;
9422                fixed: 1 1;
9423                rel1 {
9424                   relative: 1.0 0.0;
9425                   to_x: "elm.padding.icon2.right";
9426                   to_y: "elm.padding.bottom";
9427                }
9428                rel2 {
9429                   relative: 0.0 0.0;
9430                   to_x: "elm.padding.icon3.left";
9431                   to_y: "elm.padding.bottom";
9432                }
9433                align: 0.0 1.0;
9434                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
9435                text {
9436                   font: "SLP:style=Medium";
9437                   size: GENLIST_FONT_32_INC;
9438                   min: 0 1;
9439                   align: 0.0 0.5;
9440                   text_class: "slp_medium";
9441                }
9442             }
9443             description { state: "selected" 0.0;
9444                inherit: "default" 0.0;
9445                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
9446             }
9447             GENLIST_DESCRIPTION_FLIP_ENABLED
9448          }
9449          part { name: "elm.icon.2";
9450             clip_to: "disclip";
9451             type: SWALLOW;
9452             scale: 1;
9453             description { state: "default" 0.0;
9454                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9455                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9456                fixed: 1 1;
9457                rel1 {
9458                   relative: 1.0 0.0;
9459                   to_x: "elm.padding.left";
9460                   to_y: "elm.text.2";
9461                }
9462                rel2 {
9463                   relative: 1.0 0.0;
9464                   to_x: "elm.padding.left";
9465                   to_y: "elm.padding.bottom";
9466                }
9467                align: 0.0 0.5;
9468             }
9469             GENLIST_DESCRIPTION_FLIP_ENABLED
9470          }
9471          part { name: "elm.padding.icon2.right";
9472             clip_to: "disclip";
9473             type: RECT;
9474             scale: 1;
9475             description { state: "default" 0.0;
9476                min: GENLIST_PADDING_16_INC 0;
9477                fixed: 1 0;
9478                rel1 {
9479                   relative: 1.0 0.0;
9480                   to_x: "elm.icon.2";
9481                }
9482                rel2.to_x: "elm.icon.2";
9483                align: 0.0 0.0;
9484                visible: 0;
9485             }
9486          }
9487          part { name: "elm.text.1";
9488             clip_to: "disclip";
9489             type: TEXT;
9490             mouse_events: 0;
9491             scale: 1;
9492             description { state: "default" 0.0;
9493                min: 0 0;
9494                max: GENLIST_SIZE_576_INC 0;
9495                fixed: 1 0;
9496                rel1 {
9497                   relative: 1.0 1.0;
9498                   to_x: "elm.padding.left";
9499                   to_y: "elm.padding.top";
9500                }
9501                rel2 {
9502                   relative: 1.0 0.0;
9503                   to_x: "elm.padding.left";
9504                   to_y: "elm.text.2";
9505                }
9506                align: 0.0 0.5;
9507                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
9508                text {
9509                   font: "SLP:style=Roman";
9510                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
9511                   min: 1 1;
9512                   align: 0.0 0.5;
9513                   text_class: "list_item";
9514                }
9515             }
9516             description { state: "selected" 0.0;
9517                inherit: "default" 0.0;
9518                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
9519             }
9520             GENLIST_DESCRIPTION_FLIP_ENABLED
9521          }
9522
9523          part { name: "elm.padding.icon1.left";
9524             type: RECT;
9525             scale: 1;
9526             description { state: "default" 0.0;
9527                min: GENLIST_PADDING_16_INC 0;
9528                fixed: 1 0;
9529                rel1 {
9530                   relative: 1.0 0.0;
9531                   to_x: "elm.text.1";
9532                }
9533                rel2.to_x: "elm.text.1";
9534                align: 0.0 0.0;
9535                visible: 0;
9536             }
9537          }
9538          part { name: "elm.icon.1";
9539             clip_to: "disclip";
9540             type: SWALLOW;
9541             scale: 1;
9542             description { state: "default" 0.0;
9543                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9544                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9545                fixed: 1 1;
9546                rel1 {
9547                   relative: 1.0 1.0;
9548                   to_x: "elm.padding.icon1.left";
9549                   to_y: "elm.padding.top";
9550                }
9551                rel2 {
9552                   relative: 1.0 0.0;
9553                   to_x: "elm.padding.icon1.left";
9554                   to_y: "elm.text.2";
9555                }
9556                align: 0.0 0.5;
9557             }
9558             GENLIST_DESCRIPTION_FLIP_ENABLED
9559          }
9560          GENLIST_PART_FLIP
9561          GENLIST_PART_DISCLIP
9562       }
9563       programs {
9564          // signal: elm,state,%s,active
9565          //   a "check" item named %s went active
9566          // signal: elm,state,%s,passive
9567          //   a "check" item named %s went passive
9568          // default is passive
9569          program { name: "go_active";
9570             signal: "elm,state,selected";
9571             source: "elm";
9572             action: STATE_SET "selected" 0.0;
9573             target: "bg_image";
9574             target: "elm.text.1";
9575             target: "elm.text.2";
9576             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9577          }
9578          program { name: "go_passive";
9579             signal: "elm,state,unselected";
9580             source: "elm";
9581             action: STATE_SET "default" 0.0;
9582             target: "bg_image";
9583             target: "elm.text.1";
9584             target: "elm.text.2";
9585             transition: LINEAR 0.1;
9586          }
9587          program { name: "go_disabled";
9588             signal: "elm,state,disabled";
9589             source: "elm";
9590             action: STATE_SET "disabled" 0.0;
9591             target: "disclip";
9592          }
9593          program { name: "go_enabled";
9594             signal: "elm,state,enabled";
9595             source: "elm";
9596             action: STATE_SET "default" 0.0;
9597             target: "disclip";
9598          }
9599          GENLIST_PROGRAM_FLIP_2TEXT_3ICON
9600          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9601       }
9602    }
9603
9604 // 3.2.29
9605    group { name: "elm/genlist/item/2text.1icon.5/default";
9606       alias: "elm/genlist/item_odd/2text.1icon.5/default";
9607       alias: "elm/genlist/item_compress/2text.1icon.5/default";
9608       alias: "elm/genlist/item_compress_odd/2text.1icon.5/default";
9609       data.item: "stacking" "above";
9610       data.item: "selectraise" "on";
9611       data.item: "texts" "elm.text.1 elm.text.2";
9612       data.item: "contents" "elm.icon";
9613       data.item: "flips" "elm.flip.content";
9614       images {
9615          image: "00_list_bar_press_1x80.png" COMP;
9616       }
9617       parts {
9618          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9619          GENLIST_PART_BG_IMAGE
9620          GENLIST_PART_BOTTOM_LINE
9621          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9622          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9623          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9624          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9625          part { name: "elm.icon";
9626             clip_to: "disclip";
9627             type: SWALLOW;
9628             scale: 1;
9629             description { state: "default" 0.0;
9630                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9631                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9632                fixed: 1 1;
9633                rel1 {
9634                   relative: 0.0 1.0;
9635                   to_x: "elm.padding.right";
9636                   to_y: "elm.padding.top";
9637                }
9638                rel2 {
9639                   relative: 0.0 0.0;
9640                   to_x: "elm.padding.right";
9641                   to_y: "elm.padding.bottom";
9642                }
9643                align: 1.0 0.5;
9644             }
9645             GENLIST_DESCRIPTION_FLIP_ENABLED
9646          }
9647          part { name: "elm.padding.icon.left";
9648             clip_to: "disclip";
9649             type: RECT;
9650             scale: 1;
9651             description { state: "default" 0.0;
9652                min: GENLIST_PADDING_16_INC 0;
9653                fixed: 1 0;
9654                rel1.to_x: "elm.icon";
9655                rel2 {
9656                   relative: 0.0 1.0;
9657                   to_x: "elm.icon";
9658                }
9659                align: 1.0 0.0;
9660                visible: 0;
9661             }
9662          }
9663          part { name: "elm.text.1";
9664             clip_to: "disclip";
9665             type: TEXT;
9666             mouse_events: 0;
9667             scale: 1;
9668             description { state: "default" 0.0;
9669                min: 0 GENLIST_SIZE_61_INC;
9670                fixed: 0 1;
9671                rel1 {
9672                   relative: 1.0 0.0;
9673                   to_x: "elm.padding.left";
9674                   to_y: "elm.padding.bottom";
9675                }
9676                rel2 {
9677                   relative: 0.0 0.0;
9678                   to_x: "elm.padding.icon.left";
9679                   to_y: "elm.padding.bottom";
9680                }
9681                align: 0.0 1.0;
9682                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
9683                text {
9684                   font: "SLP:style=Roman";
9685                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
9686                   min: 0 1;
9687                   align: 0.0 0.5;
9688                   text_class: "slp_roman";
9689                }
9690             }
9691             description { state: "selected" 0.0;
9692                inherit: "default" 0.0;
9693                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
9694             }
9695             GENLIST_DESCRIPTION_FLIP_ENABLED
9696          }
9697          part { name: "elm.text.2";
9698             clip_to: "disclip";
9699             type: TEXT;
9700             mouse_events: 0;
9701             scale: 1;
9702             description { state: "default" 0.0;
9703                rel1 {
9704                   relative: 1.0 1.0;
9705                   to_x: "elm.padding.left";
9706                   to_y: "elm.padding.top";
9707                }
9708                rel2 {
9709                   relative: 0.0 0.0;
9710                   to_x: "elm.padding.icon.left";
9711                   to_y: "elm.text.1";
9712                }
9713                align: 0.0 1.0;
9714                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
9715                text {
9716                   font: "SLP:style=Medium";
9717                   size: GENLIST_FONT_32_INC;
9718                   min: 0 1;
9719                   align: 0.0 0.5;
9720                   text_class: "list_item";
9721                }
9722             }
9723             description { state: "selected" 0.0;
9724                inherit: "default" 0.0;
9725                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
9726             }
9727             GENLIST_DESCRIPTION_FLIP_ENABLED
9728          }
9729          GENLIST_PART_FLIP
9730          GENLIST_PART_DISCLIP
9731       }
9732       programs {
9733          // signal: elm,state,%s,active
9734          //   a "check" item named %s went active
9735          // signal: elm,state,%s,passive
9736          //   a "check" item named %s went passive
9737          // default is passive
9738          program { name: "go_active";
9739             signal: "elm,state,selected";
9740             source: "elm";
9741             action: STATE_SET "selected" 0.0;
9742             target: "bg_image";
9743             target: "elm.text.1";
9744             target: "elm.text.2";
9745             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9746          }
9747          program { name: "go_passive";
9748             signal: "elm,state,unselected";
9749             source: "elm";
9750             action: STATE_SET "default" 0.0;
9751             target: "bg_image";
9752             target: "elm.text.1";
9753             target: "elm.text.2";
9754             transition: LINEAR 0.1;
9755          }
9756          program { name: "go_disabled";
9757             signal: "elm,state,disabled";
9758             source: "elm";
9759             action: STATE_SET "disabled" 0.0;
9760             target: "disclip";
9761          }
9762          program { name: "go_enabled";
9763             signal: "elm,state,enabled";
9764             source: "elm";
9765             action: STATE_SET "default" 0.0;
9766             target: "disclip";
9767          }
9768          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
9769          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9770       }
9771    }
9772
9773 // 3.2.30
9774    group { name: "elm/genlist/item/1text.3icon.3/default";
9775       alias: "elm/genlist/item_odd/1text.3icon.3/default";
9776       alias: "elm/genlist/item_compress/1text.3icon.3/default";
9777       alias: "elm/genlist/item_compress_odd/1text.3icon.3/default";
9778       data.item: "stacking" "above";
9779       data.item: "selectraise" "on";
9780       data.item: "texts" "elm.text.1";
9781       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.progress";
9782       data.item: "flips" "elm.flip.content";
9783       images {
9784          image: "00_list_bar_press_1x80.png" COMP;
9785       }
9786       parts {
9787          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9788          GENLIST_PART_BG_IMAGE
9789          GENLIST_PART_BOTTOM_LINE
9790          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9791          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9792          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9793          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9794          part { name: "elm.icon.1";
9795             clip_to: "disclip";
9796             type: SWALLOW;
9797             scale: 1;
9798             description { state: "default" 0.0;
9799                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9800                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9801                fixed: 1 1;
9802                rel1 {
9803                   relative: 1.0 1.0;
9804                   to_x: "elm.padding.left";
9805                   to_y: "elm.padding.top";
9806                }
9807                rel2 {
9808                   relative: 1.0 0.0;
9809                   to_x: "elm.padding.left";
9810                   to_y: "elm.padding.bottom";
9811                }
9812                align: 0.0 0.5;
9813             }
9814             GENLIST_DESCRIPTION_FLIP_ENABLED
9815          }
9816          part { name: "elm.padding.icon1.right";
9817             clip_to: "disclip";
9818             type: RECT;
9819             scale: 1;
9820             description { state: "default" 0.0;
9821                min: GENLIST_PADDING_16_INC 0;
9822                fixed: 1 0;
9823                rel1 {
9824                   relative: 1.0 0.0;
9825                   to_x: "elm.icon.1";
9826                }
9827                rel2.to_x: "elm.icon.1";
9828                align: 0.0 0.0;
9829                visible: 0;
9830             }
9831          }
9832          part { name: "elm.icon.2";
9833             clip_to: "disclip";
9834             type: SWALLOW;
9835             scale: 1;
9836             description { state: "default" 0.0;
9837                fixed: 1 1;
9838                rel1 {
9839                   relative: 0.0 1.0;
9840                   to_x: "elm.padding.right";
9841                   to_y: "elm.padding.top";
9842                }
9843                rel2 {
9844                   relative: 0.0 0.0;
9845                   to_x: "elm.padding.right";
9846                   to_y: "elm.padding.bottom";
9847                }
9848                align: 1.0 0.5;
9849             }
9850             GENLIST_DESCRIPTION_FLIP_ENABLED
9851          }
9852          part { name: "elm.padding.icon2.left";
9853             clip_to: "disclip";
9854             type: RECT;
9855             scale: 1;
9856             description { state: "default" 0.0;
9857                min: GENLIST_PADDING_16_INC 0;
9858                fixed: 1 0;
9859                rel1.to_x: "elm.icon.2";
9860                rel2 {
9861                   relative: 0.0 1.0;
9862                   to_x: "elm.icon.2";
9863                }
9864                align: 1.0 0.0;
9865                visible: 0;
9866             }
9867          }
9868          part { name: "elm.text.1";
9869             clip_to: "disclip";
9870             type: TEXT;
9871             mouse_events: 0;
9872             scale: 1;
9873             description { state: "default" 0.0;
9874                min: 0 GENLIST_SIZE_61_INC;
9875                fixed: 0 1;
9876                rel1 {
9877                   relative: 1.0 1.0;
9878                   to_x: "elm.padding.icon1.right";
9879                   to_y: "elm.padding.top";
9880                }
9881                rel2 {
9882                   relative: 0.0 1.0;
9883                   to_x: "elm.padding.icon2.left";
9884                   to_y: "elm.padding.top";
9885                }
9886                align: 0 0;
9887                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
9888                text {
9889                   font: "SLP:style=Roman";
9890                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
9891                   min: 0 1;
9892                   align: 0.0 0.5;
9893                   text_class: "list_item";
9894                }
9895             }
9896             description { state: "selected" 0.0;
9897                inherit: "default" 0.0;
9898                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
9899             }
9900             GENLIST_DESCRIPTION_FLIP_ENABLED
9901          }
9902          part { name: "elm.swallow.progress";
9903             clip_to: "disclip";
9904             type: SWALLOW;
9905             scale: 1;
9906             description { state: "default" 0.0;
9907                fixed: 0 1;
9908                rel1 {
9909                   relative: 1.0 1.0;
9910                   to_x: "elm.padding.icon1.right";
9911                   to_y: "elm.text.1";
9912                }
9913                rel2 {
9914                   relative: 0.0 1.0;
9915                   to_x: "elm.padding.icon2.left";
9916                   to_y: "elm.text.1";
9917                }
9918                align: 0.5 0.0;
9919             }
9920             GENLIST_DESCRIPTION_FLIP_ENABLED
9921          }
9922          GENLIST_PART_FLIP
9923          GENLIST_PART_DISCLIP
9924       }
9925       programs {
9926          // signal: elm,state,%s,active
9927          //   a "check" item named %s went active
9928          // signal: elm,state,%s,passive
9929          //   a "check" item named %s went passive
9930          // default is passive
9931          program { name: "go_active";
9932             signal: "elm,state,selected";
9933             source: "elm";
9934             action: STATE_SET "selected" 0.0;
9935             target: "bg_image";
9936             target: "elm.text.1";
9937             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9938          }
9939          program { name: "go_passive";
9940             signal: "elm,state,unselected";
9941             source: "elm";
9942             action: STATE_SET "default" 0.0;
9943             target: "bg_image";
9944             target: "elm.text.1";
9945             transition: LINEAR 0.1;
9946          }
9947          program { name: "go_disabled";
9948             signal: "elm,state,disabled";
9949             source: "elm";
9950             action: STATE_SET "disabled" 0.0;
9951             target: "disclip";
9952          }
9953          program { name: "go_enabled";
9954             signal: "elm,state,enabled";
9955             source: "elm";
9956             action: STATE_SET "default" 0.0;
9957             target: "disclip";
9958          }
9959          program { name: "flip_enabled";
9960             signal: "elm,state,flip,enabled";
9961             source: "elm";
9962             action: STATE_SET "flip_enabled" 0.0;
9963             target: "elm.text.1";
9964             target: "elm.icon.1";
9965             target: "elm.icon.2";
9966             target: "elm.swallow.progress";
9967             target: "elm.flip.content";
9968          }
9969          program { name: "flip_disabled";
9970             signal: "elm,state,flip,disabled";
9971             source: "elm";
9972             action: STATE_SET "default" 0.0;
9973             target: "elm.text.1";
9974             target: "elm.icon.1";
9975             target: "elm.icon.2";
9976             target: "elm.swallow.progress";
9977             target: "elm.flip.content";
9978          }
9979          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9980       }
9981    }
9982
9983 // 3.2.30
9984    group { name: "elm/genlist/item/3text.3icon/default";
9985       alias: "elm/genlist/item_odd/3text.3icon/default";
9986       alias: "elm/genlist/item_compress/3text.3icon/default";
9987       alias: "elm/genlist/item_compress_odd/3text.3icon/default";
9988       data.item: "stacking" "above";
9989       data.item: "selectraise" "on";
9990       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
9991       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.progress";
9992       data.item: "flips" "elm.flip.content";
9993       images {
9994          image: "00_list_bar_press_1x80.png" COMP;
9995       }
9996       parts {
9997          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9998          GENLIST_PART_BG_IMAGE
9999          GENLIST_PART_BOTTOM_LINE
10000          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10001          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10002          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10003          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10004          part { name: "elm.icon.1";
10005             clip_to: "disclip";
10006             type: SWALLOW;
10007             scale: 1;
10008             description { state: "default" 0.0;
10009                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10010                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10011                fixed: 1 1;
10012                rel1 {
10013                   relative: 1.0 1.0;
10014                   to_x: "elm.padding.left";
10015                   to_y: "elm.padding.top";
10016                }
10017                rel2 {
10018                   relative: 1.0 0.0;
10019                   to_x: "elm.padding.left";
10020                   to_y: "elm.padding.bottom";
10021                }
10022                align: 0.0 0.5;
10023             }
10024             GENLIST_DESCRIPTION_FLIP_ENABLED
10025          }
10026          part { name: "elm.padding.icon1.right";
10027             clip_to: "disclip";
10028             type: RECT;
10029             scale: 1;
10030             description { state: "default" 0.0;
10031                min: GENLIST_PADDING_16_INC 0;
10032                fixed: 1 0;
10033                rel1 {
10034                   relative: 1.0 0.0;
10035                   to_x: "elm.icon.1";
10036                }
10037                rel2.to_x: "elm.icon.1";
10038                align: 0.0 0.0;
10039                visible: 0;
10040             }
10041          }
10042          part { name: "elm.icon.2";
10043             clip_to: "disclip";
10044             type: SWALLOW;
10045             scale: 1;
10046             description { state: "default" 0.0;
10047                fixed: 1 1;
10048                rel1 {
10049                   relative: 0.0 1.0;
10050                   to_x: "elm.padding.right";
10051                   to_y: "elm.padding.top";
10052                }
10053                rel2 {
10054                   relative: 0.0 0.0;
10055                   to_x: "elm.padding.right";
10056                   to_y: "elm.padding.bottom";
10057                }
10058                align: 1.0 0.5;
10059             }
10060             GENLIST_DESCRIPTION_FLIP_ENABLED
10061          }
10062          part { name: "elm.padding.icon2.left";
10063             clip_to: "disclip";
10064             type: RECT;
10065             scale: 1;
10066             description { state: "default" 0.0;
10067                min: GENLIST_PADDING_16_INC 0;
10068                fixed: 1 0;
10069                rel1.to_x: "elm.icon.2";
10070                rel2 {
10071                   relative: 0.0 1.0;
10072                   to_x: "elm.icon.2";
10073                }
10074                align: 1.0 0.0;
10075                visible: 0;
10076             }
10077          }
10078          part { name: "elm.text.1";
10079             clip_to: "disclip";
10080             type: TEXT;
10081             mouse_events: 0;
10082             scale: 1;
10083             description { state: "default" 0.0;
10084                min: 0 GENLIST_SIZE_61_INC;
10085                fixed: 0 1;
10086                rel1 {
10087                   relative: 1.0 0.0;
10088                   to_x: "elm.padding.icon1.right";
10089                   to_y: "elm.padding.top";
10090                }
10091                rel2 {
10092                   relative: 0.0 0.0;
10093                   to_x: "elm.padding.icon2.left";
10094                   to_y: "elm.padding.top";
10095                }
10096                align: 0 0;
10097                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
10098                text {
10099                   font: "SLP:style=Roman";
10100                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
10101                   min: 0 1;
10102                   align: 0.0 0.5;
10103                   text_class: "list_item";
10104                }
10105             }
10106             description { state: "selected" 0.0;
10107                inherit: "default" 0.0;
10108                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
10109             }
10110             GENLIST_DESCRIPTION_FLIP_ENABLED
10111          }
10112          part { name: "elm.swallow.progress";
10113             clip_to: "disclip";
10114             type: SWALLOW;
10115             scale: 1;
10116             description { state: "default" 0.0;
10117                fixed: 0 1;
10118                rel1 {
10119                   relative: 1.0 1.0;
10120                   to_x: "elm.padding.icon1.right";
10121                   to_y: "elm.text.1";
10122                }
10123                rel2 {
10124                   relative: 0.0 0.0;
10125                   to_x: "elm.padding.icon2.left";
10126                   to_y: "elm.text.2";
10127                }
10128                align: 0.5 0.5;
10129             }
10130             GENLIST_DESCRIPTION_FLIP_ENABLED
10131          }
10132          part { name: "elm.text.2";
10133             clip_to: "disclip";
10134             type: TEXT;
10135             mouse_events: 0;
10136             scale: 1;
10137             description { state: "default" 0.0;
10138                min: 0 GENLIST_SIZE_48_INC;
10139                fixed: 0 1;
10140                rel1 {
10141                   relative: 1.0 1.0;
10142                   to_x: "elm.padding.icon1.right";
10143                   to_y: "elm.padding.bottom";
10144                }
10145                rel2 {
10146                   relative: 0.0 1.0;
10147                   to_x: "elm.padding.icon2.left";
10148                   to_y: "elm.padding.bottom";
10149                }
10150                align: 0 1;
10151                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
10152                text {
10153                   font: "SLP:style=Roman";
10154                   size: GENLIST_FONT_32_INC;
10155                   min: 0 1;
10156                   align: 0.0 0.5;
10157                   text_class: "slp_roman";
10158                }
10159             }
10160             description { state: "selected" 0.0;
10161                inherit: "default" 0.0;
10162                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
10163             }
10164             GENLIST_DESCRIPTION_FLIP_ENABLED
10165          }
10166          part { name: "elm.text.3";
10167             clip_to: "disclip";
10168             type: TEXT;
10169             mouse_events: 0;
10170             scale: 1;
10171             description { state: "default" 0.0;
10172                min: 0 GENLIST_SIZE_48_INC;
10173                fixed: 0 1;
10174                rel1 {
10175                   relative: 1.0 1.0;
10176                   to_x: "elm.padding.icon1.right";
10177                   to_y: "elm.padding.bottom";
10178                }
10179                rel2 {
10180                   relative: 0.0 1.0;
10181                   to_x: "elm.padding.icon2.left";
10182                   to_y: "elm.padding.bottom";
10183                }
10184                align: 1 1;
10185                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
10186                text {
10187                   font: "SLP:style=Roman";
10188                   size: GENLIST_FONT_32_INC;
10189                   min: 0 1;
10190                   align: 1.0 0.5;
10191                   text_class: "slp_roman";
10192                }
10193             }
10194             description { state: "selected" 0.0;
10195                inherit: "default" 0.0;
10196                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
10197             }
10198             GENLIST_DESCRIPTION_FLIP_ENABLED
10199          }
10200          GENLIST_PART_FLIP
10201          GENLIST_PART_DISCLIP
10202       }
10203       programs {
10204          // signal: elm,state,%s,active
10205          //   a "check" item named %s went active
10206          // signal: elm,state,%s,passive
10207          //   a "check" item named %s went passive
10208          // default is passive
10209          program { name: "go_active";
10210             signal: "elm,state,selected";
10211             source: "elm";
10212             action: STATE_SET "selected" 0.0;
10213             target: "bg_image";
10214             target: "elm.text.1";
10215             target: "elm.text.2";
10216             target: "elm.text.3";
10217             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10218          }
10219          program { name: "go_passive";
10220             signal: "elm,state,unselected";
10221             source: "elm";
10222             action: STATE_SET "default" 0.0;
10223             target: "bg_image";
10224             target: "elm.text.1";
10225             target: "elm.text.2";
10226             target: "elm.text.3";
10227             transition: LINEAR 0.1;
10228          }
10229          program { name: "go_disabled";
10230             signal: "elm,state,disabled";
10231             source: "elm";
10232             action: STATE_SET "disabled" 0.0;
10233             target: "disclip";
10234          }
10235          program { name: "go_enabled";
10236             signal: "elm,state,enabled";
10237             source: "elm";
10238             action: STATE_SET "default" 0.0;
10239             target: "disclip";
10240          }
10241          program { name: "flip_enabled";
10242             signal: "elm,state,flip,enabled";
10243             source: "elm";
10244             action: STATE_SET "flip_enabled" 0.0;
10245             target: "elm.text.1";
10246             target: "elm.text.2";
10247             target: "elm.text.3";
10248             target: "elm.icon.1";
10249             target: "elm.icon.2";
10250             target: "elm.swallow.progress";
10251             target: "elm.flip.content";
10252          }
10253          program { name: "flip_disabled";
10254             signal: "elm,state,flip,disabled";
10255             source: "elm";
10256             action: STATE_SET "default" 0.0;
10257             target: "elm.text.1";
10258             target: "elm.text.2";
10259             target: "elm.text.3";
10260             target: "elm.icon.1";
10261             target: "elm.icon.2";
10262             target: "elm.swallow.progress";
10263             target: "elm.flip.content";
10264          }
10265          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10266       }
10267    }
10268
10269 // 3.2.31
10270    group { name: "elm/genlist/item/2text.2icon.8/default";
10271       alias: "elm/genlist/item_odd/2text.2icon.8/default";
10272       alias: "elm/genlist/item_compress/2text.2icon.8/default";
10273       alias: "elm/genlist/item_compress_odd/2text.2icon.8/default";
10274       data.item: "stacking" "above";
10275       data.item: "selectraise" "on";
10276       data.item: "texts" "elm.text.1 elm.text.2";
10277       data.item: "contents" "elm.icon.1 elm.icon.2";
10278       data.item: "flips" "elm.flip.content";
10279       images {
10280          image: "00_list_bar_press_1x80.png" COMP;
10281       }
10282       parts {
10283          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10284          GENLIST_PART_BG_IMAGE
10285          GENLIST_PART_BOTTOM_LINE
10286          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10287          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10288          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10289          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10290          part { name: "elm.icon.1";
10291             clip_to: "disclip";
10292             type: SWALLOW;
10293             scale: 1;
10294             description { state: "default" 0.0;
10295                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10296                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10297                fixed: 1 1;
10298                rel1 {
10299                   relative: 1.0 1.0;
10300                   to_x: "elm.padding.left";
10301                   to_y: "elm.padding.top";
10302                }
10303                rel2 {
10304                   relative: 1.0 0.0;
10305                   to_x: "elm.padding.left";
10306                   to_y: "elm.padding.bottom";
10307                }
10308                align: 0.0 0.5;
10309             }
10310             GENLIST_DESCRIPTION_FLIP_ENABLED
10311          }
10312          part { name: "elm.padding.icon1.right";
10313             clip_to: "disclip";
10314             type: RECT;
10315             scale: 1;
10316             description { state: "default" 0.0;
10317                min: GENLIST_PADDING_16_INC 0;
10318                fixed: 1 0;
10319                rel1 {
10320                   relative: 1.0 0.0;
10321                   to_x: "elm.icon.1";
10322                }
10323                rel2.to_x: "elm.icon.1";
10324                align: 0.0 0.0;
10325                visible: 0;
10326             }
10327          }
10328          part { name: "elm.icon.2";
10329             clip_to: "disclip";
10330             type: SWALLOW;
10331             scale: 1;
10332             description { state: "default" 0.0;
10333                fixed: 1 1;
10334                rel1 {
10335                   relative: 0.0 1.0;
10336                   to_x: "elm.padding.right";
10337                   to_y: "elm.padding.top";
10338                }
10339                rel2 {
10340                   relative: 0.0 0.0;
10341                   to_x: "elm.padding.right";
10342                   to_y: "elm.padding.bottom";
10343                }
10344                align: 1.0 0.5;
10345             }
10346             GENLIST_DESCRIPTION_FLIP_ENABLED
10347          }
10348          part { name: "elm.padding.icon2.left";
10349             clip_to: "disclip";
10350             type: RECT;
10351             scale: 1;
10352             description { state: "default" 0.0;
10353                min: GENLIST_PADDING_16_INC 0;
10354                fixed: 1 0;
10355                rel1.to_x: "elm.icon.2";
10356                rel2 {
10357                   relative: 0.0 1.0;
10358                   to_x: "elm.icon.2";
10359                }
10360                align: 1.0 0.0;
10361                visible: 0;
10362             }
10363          }
10364          part { name: "elm.text.1";
10365             clip_to: "disclip";
10366             type: TEXT;
10367             mouse_events: 0;
10368             scale: 1;
10369             description { state: "default" 0.0;
10370                min: 0 GENLIST_SIZE_61_INC;
10371                fixed: 0 1;
10372                rel1 {
10373                   relative: 1.0 1.0;
10374                   to_x: "elm.padding.icon1.right";
10375                   to_y: "elm.padding.top";
10376                }
10377                rel2 {
10378                   relative: 0.0 1.0;
10379                   to_x: "elm.padding.icon2.left";
10380                   to_y: "elm.padding.top";
10381                }
10382                align: 0.0 0.0;
10383                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
10384                text {
10385                   font: "SLP:style=Roman";
10386                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
10387                   min: 0 1;
10388                   align: 0.0 0.5;
10389                   text_class: "list_item";
10390                }
10391             }
10392             description { state: "selected" 0.0;
10393                inherit: "default" 0.0;
10394                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
10395             }
10396             GENLIST_DESCRIPTION_FLIP_ENABLED
10397          }
10398          part { name: "elm.text.2";
10399             clip_to: "disclip";
10400             type: TEXT;
10401             mouse_events: 0;
10402             scale: 1;
10403             description { state: "default" 0.0;
10404                rel1 {
10405                   relative: 1.0 1.0;
10406                   to_x: "elm.padding.icon1.right";
10407                   to_y: "elm.text.1";
10408                }
10409                rel2 {
10410                   relative: 0.0 0.0;
10411                   to_x: "elm.padding.icon2.left";
10412                   to_y: "elm.padding.bottom";
10413                }
10414                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
10415                text {
10416                   font: "SLP:style=Medium";
10417                   size: GENLIST_FONT_32_INC;
10418                   min: 0 1;
10419                   align: 0.0 0.5;
10420                   text_class: "slp_medium";
10421                }
10422             }
10423             description { state: "selected" 0.0;
10424                inherit: "default" 0.0;
10425                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
10426             }
10427             GENLIST_DESCRIPTION_FLIP_ENABLED
10428          }
10429          GENLIST_PART_FLIP
10430          GENLIST_PART_DISCLIP
10431       }
10432       programs {
10433          // signal: elm,state,%s,active
10434          //   a "check" item named %s went active
10435          // signal: elm,state,%s,passive
10436          //   a "check" item named %s went passive
10437          // default is passive
10438          program { name: "go_active";
10439             signal: "elm,state,selected";
10440             source: "elm";
10441             action: STATE_SET "selected" 0.0;
10442             target: "bg_image";
10443             target: "elm.text.1";
10444             target: "elm.text.2";
10445             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10446          }
10447          program { name: "go_passive";
10448             signal: "elm,state,unselected";
10449             source: "elm";
10450             action: STATE_SET "default" 0.0;
10451             target: "bg_image";
10452             target: "elm.text.1";
10453             target: "elm.text.2";
10454             transition: LINEAR 0.1;
10455          }
10456          program { name: "go_disabled";
10457             signal: "elm,state,disabled";
10458             source: "elm";
10459             action: STATE_SET "disabled" 0.0;
10460             target: "disclip";
10461          }
10462          program { name: "go_enabled";
10463             signal: "elm,state,enabled";
10464             source: "elm";
10465             action: STATE_SET "default" 0.0;
10466             target: "disclip";
10467          }
10468          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
10469          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10470       }
10471    }
10472
10473    group { name: "elm/genlist/item_compress/2text.2icon.8.tb/default";
10474       inherit: "elm/genlist/item/2text.2icon.8/default";
10475       parts {
10476          part { name: "elm.text.1";
10477             clip_to: "disclip";
10478             type: TEXTBLOCK;
10479             mouse_events: 0;
10480             scale: 1;
10481             description { state: "default" 0.0;
10482                min: 0 GENLIST_SIZE_61_INC;
10483                fixed: 0 1;
10484                rel1 {
10485                   relative: 1.0 1.0;
10486                   to_x: "elm.padding.icon1.right";
10487                   to_y: "elm.padding.top";
10488                }
10489                rel2 {
10490                   relative: 0.0 1.0;
10491                   to_x: "elm.padding.icon2.left";
10492                   to_y: "elm.padding.top";
10493                }
10494                align: 0.0 0.0;
10495                text {
10496                   style: "genlist_style_list_main_text_unread";
10497                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
10498                   min: 0 1;
10499                   align: 0.0 0.5;
10500                   text_class: "slp_roman";
10501                }
10502             }
10503             description { state: "selected" 0.0;
10504                inherit: "default" 0.0;
10505                text.style: "genlist_style_list_main_text_focus";
10506             }
10507             GENLIST_DESCRIPTION_FLIP_ENABLED
10508          }
10509       }
10510    }
10511
10512 // 3.2.33
10513    group { name: "elm/genlist/item/1text.2icon.5/default";
10514       alias: "elm/genlist/item_odd/1text.2icon.5/default";
10515       alias: "elm/genlist/item_compress/1text.2icon.5/default";
10516       alias: "elm/genlist/item_compress_odd/1text.2icon.5/default";
10517       data.item: "stacking" "above";
10518       data.item: "selectraise" "on";
10519       data.item: "texts" "elm.text.1";
10520       data.item: "contents" "elm.icon.1 elm.swallow.progress";
10521       data.item: "flips" "elm.flip.content";
10522       images {
10523          image: "00_list_bar_press_1x80.png" COMP;
10524       }
10525       parts {
10526          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10527          GENLIST_PART_BG_IMAGE
10528          GENLIST_PART_BOTTOM_LINE
10529          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10530          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10531          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10532          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10533          part { name: "elm.icon.1";
10534             clip_to: "disclip";
10535             type: SWALLOW;
10536             scale: 1;
10537             description { state: "default" 0.0;
10538                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10539                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10540                fixed: 1 1;
10541                rel1 {
10542                   relative: 1.0 1.0;
10543                   to_x: "elm.padding.left";
10544                   to_y: "elm.padding.top";
10545                }
10546                rel2 {
10547                   relative: 1.0 0.0;
10548                   to_x: "elm.padding.left";
10549                   to_y: "elm.padding.bottom";
10550                }
10551                align: 0.0 0.5;
10552             }
10553             GENLIST_DESCRIPTION_FLIP_ENABLED
10554          }
10555          part { name: "elm.padding.icon1.right";
10556             clip_to: "disclip";
10557             type: RECT;
10558             scale: 1;
10559             description { state: "default" 0.0;
10560                min: GENLIST_PADDING_16_INC 0;
10561                fixed: 1 0;
10562                rel1 {
10563                   relative: 1.0 0.0;
10564                   to_x: "elm.icon.1";
10565                }
10566                rel2.to_x: "elm.icon.1";
10567                align: 0.0 0.0;
10568                visible: 0;
10569             }
10570          }
10571          part { name: "elm.text.1";
10572             clip_to: "disclip";
10573             type: TEXT;
10574             mouse_events: 0;
10575             scale: 1;
10576             description { state: "default" 0.0;
10577                min: 0 GENLIST_SIZE_61_INC;
10578                fixed: 0 1;
10579                rel1 {
10580                   relative: 1.0 1.0;
10581                   to_x: "elm.padding.icon1.right";
10582                   to_y: "elm.padding.top";
10583                }
10584                rel2 {
10585                   relative: 0.0 1.0;
10586                   to_x: "elm.padding.right";
10587                   to_y: "elm.padding.top";
10588                }
10589                align: 0 0;
10590                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
10591                text {
10592                   font: "SLP:style=Roman";
10593                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
10594                   min: 0 1;
10595                   align: 0.0 0.5;
10596                   text_class: "list_item";
10597                }
10598             }
10599             description { state: "selected" 0.0;
10600                inherit: "default" 0.0;
10601                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
10602             }
10603             GENLIST_DESCRIPTION_FLIP_ENABLED
10604          }
10605          part { name: "elm.swallow.progress";
10606             clip_to: "disclip";
10607             type: SWALLOW;
10608             scale: 1;
10609             description { state: "default" 0.0;
10610                fixed: 0 1;
10611                rel1 {
10612                   relative: 1.0 1.0;
10613                   to_x: "elm.padding.icon1.right";
10614                   to_y: "elm.text.1";
10615                }
10616                rel2 {
10617                   relative: 0.0 1.0;
10618                   to_x: "elm.padding.right";
10619                   to_y: "elm.text.1";
10620                }
10621                align: 0.5 0.0;
10622             }
10623             GENLIST_DESCRIPTION_FLIP_ENABLED
10624          }
10625          GENLIST_PART_FLIP
10626          GENLIST_PART_DISCLIP
10627       }
10628       programs {
10629          // signal: elm,state,%s,active
10630          //   a "check" item named %s went active
10631          // signal: elm,state,%s,passive
10632          //   a "check" item named %s went passive
10633          // default is passive
10634          program { name: "go_active";
10635             signal: "elm,state,selected";
10636             source: "elm";
10637             action: STATE_SET "selected" 0.0;
10638             target: "bg_image";
10639             target: "elm.text.1";
10640             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10641          }
10642          program { name: "go_passive";
10643             signal: "elm,state,unselected";
10644             source: "elm";
10645             action: STATE_SET "default" 0.0;
10646             target: "bg_image";
10647             target: "elm.text.1";
10648             transition: LINEAR 0.1;
10649          }
10650          program { name: "go_disabled";
10651             signal: "elm,state,disabled";
10652             source: "elm";
10653             action: STATE_SET "disabled" 0.0;
10654             target: "disclip";
10655          }
10656          program { name: "go_enabled";
10657             signal: "elm,state,enabled";
10658             source: "elm";
10659             action: STATE_SET "default" 0.0;
10660             target: "disclip";
10661          }
10662          program { name: "flip_enabled";
10663             signal: "elm,state,flip,enabled";
10664             source: "elm";
10665             action: STATE_SET "flip_enabled" 0.0;
10666             target: "elm.text.1";
10667             target: "elm.icon.1";
10668             target: "elm.swallow.progress";
10669             target: "elm.flip.content";
10670          }
10671          program { name: "flip_disabled";
10672             signal: "elm,state,flip,disabled";
10673             source: "elm";
10674             action: STATE_SET "default" 0.0;
10675             target: "elm.text.1";
10676             target: "elm.icon.1";
10677             target: "elm.swallow.progress";
10678             target: "elm.flip.content";
10679          }
10680          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10681       }
10682    }
10683
10684 // 3.2.33
10685    group { name: "elm/genlist/item/2text.3icon.4/default";
10686       alias: "elm/genlist/item_odd/2text.3icon.4/default";
10687       alias: "elm/genlist/item_compress/2text.3icon.4/default";
10688       alias: "elm/genlist/item_compress_odd/2text.3icon.4/default";
10689       data.item: "stacking" "above";
10690       data.item: "selectraise" "on";
10691       data.item: "texts" "elm.text.1 elm.text.2";
10692       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
10693       data.item: "flips" "elm.flip.content";
10694       images {
10695          image: "00_list_bar_press_1x80.png" COMP;
10696       }
10697       parts {
10698          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10699          GENLIST_PART_BG_IMAGE
10700          GENLIST_PART_BOTTOM_LINE
10701          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10702          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10703          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10704          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10705          part { name: "elm.icon.1";
10706             clip_to: "disclip";
10707             type: SWALLOW;
10708             scale: 1;
10709             description { state: "default" 0.0;
10710                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
10711                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
10712                fixed: 1 1;
10713                rel1 {
10714                   relative: 1.0 1.0;
10715                   to_x: "elm.padding.left";
10716                   to_y: "elm.padding.top";
10717                }
10718                rel2 {
10719                   relative: 1.0 0.0;
10720                   to_x: "elm.padding.left";
10721                   to_y: "elm.padding.bottom";
10722                }
10723                align: 0.0 0.5;
10724             }
10725             GENLIST_DESCRIPTION_FLIP_ENABLED
10726          }
10727          part { name: "elm.padding.icon1.right";
10728             clip_to: "disclip";
10729             type: RECT;
10730             scale: 1;
10731             description { state: "default" 0.0;
10732                min: GENLIST_SIZE_16_INC 0;
10733                fixed: 1 0;
10734                rel1 {
10735                   relative: 1.0 0.0;
10736                   to_x: "elm.icon.1";
10737                }
10738                rel2.to_x: "elm.icon.1";
10739                align: 0.0 0.0;
10740                visible: 0;
10741             }
10742          }
10743          part { name: "elm.icon.2";
10744             clip_to: "disclip";
10745             type: SWALLOW;
10746             scale: 1;
10747             description { state: "default" 0.0;
10748                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10749                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10750                fixed: 1 1;
10751                rel1 {
10752                   relative: 1.0 1.0;
10753                   to_x: "elm.padding.icon1.right";
10754                   to_y: "elm.padding.top";
10755                }
10756                rel2 {
10757                   relative: 1.0 0.0;
10758                   to_x: "elm.padding.icon1.right";
10759                   to_y: "elm.padding.bottom";
10760                }
10761                align: 0.0 0.5;
10762             }
10763             GENLIST_DESCRIPTION_FLIP_ENABLED
10764          }
10765          part { name: "elm.padding.icon2.right";
10766             clip_to: "disclip";
10767             type: RECT;
10768             scale: 1;
10769             description { state: "default" 0.0;
10770                min: GENLIST_SIZE_16_INC 0;
10771                fixed: 1 0;
10772                rel1 {
10773                   relative: 1.0 0.0;
10774                   to_x: "elm.icon.2";
10775                }
10776                rel2.to_x: "elm.icon.2";
10777                align: 0.0 0.0;
10778                visible: 0;
10779             }
10780          }
10781          part { name: "elm.icon.3";
10782             clip_to: "disclip";
10783             type: SWALLOW;
10784             scale: 1;
10785             description { state: "default" 0.0;
10786                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10787                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10788                fixed: 1 1;
10789                rel1 {
10790                   relative: 0.0 1.0;
10791                   to_x: "elm.padding.right";
10792                   to_y: "elm.padding.top";
10793                }
10794                rel2 {
10795                   relative: 0.0 0.0;
10796                   to_x: "elm.padding.right";
10797                   to_y: "elm.padding.bottom";
10798                }
10799                align: 1.0 0.5;
10800             }
10801             GENLIST_DESCRIPTION_FLIP_ENABLED
10802          }
10803          part { name: "elm.padding.icon3.left";
10804             clip_to: "disclip";
10805             type: RECT;
10806             scale: 1;
10807             description { state: "default" 0.0;
10808                min: GENLIST_SIZE_16_INC 0;
10809                fixed: 1 0;
10810                rel1.to_x: "elm.icon.3";
10811                rel2 {
10812                   relative: 0.0 1.0;
10813                   to_x: "elm.icon.3";
10814                }
10815                align: 1.0 0.0;
10816                visible: 0;
10817             }
10818          }
10819          part { name: "elm.text.1";
10820             clip_to: "disclip";
10821             type: TEXT;
10822             mouse_events: 0;
10823             scale: 1;
10824             description { state: "default" 0.0;
10825                min: 0 GENLIST_SIZE_61_INC;
10826                fixed: 0 1;
10827                rel1 {
10828                   relative: 1.0 1.0;
10829                   to_x: "elm.padding.icon2.right";
10830                   to_y: "elm.padding.top";
10831                }
10832                rel2 {
10833                   relative: 0.0 1.0;
10834                   to_x: "elm.padding.icon3.left";
10835                   to_y: "elm.padding.top";
10836                }
10837                align: 0.0 0.0;
10838                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
10839                text {
10840                   font: "SLP:style=Roman";
10841                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
10842                   min: 0 1;
10843                   align: 0.0 0.5;
10844                   text_class: "list_item";
10845                }
10846             }
10847             description { state: "selected" 0.0;
10848                inherit: "default" 0.0;
10849                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
10850             }
10851             GENLIST_DESCRIPTION_FLIP_ENABLED
10852          }
10853          part { name: "elm.text.2";
10854             clip_to: "disclip";
10855             type: TEXT;
10856             mouse_events: 0;
10857             scale: 1;
10858             description { state: "default" 0.0;
10859                rel1 {
10860                   relative: 1.0 1.0;
10861                   to_x: "elm.padding.icon2.right";
10862                   to_y: "elm.text.1";
10863                }
10864                rel2 {
10865                   relative: 0.0 0.0;
10866                   to_x: "elm.padding.icon3.left";
10867                   to_y: "elm.padding.bottom";
10868                }
10869                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
10870                text {
10871                   font: "SLP:style=Medium";
10872                   size: GENLIST_FONT_32_INC;
10873                   min: 0 1;
10874                   align: 0.0 0.5;
10875                   text_class: "slp_medium";
10876                }
10877             }
10878             description { state: "selected" 0.0;
10879                inherit: "default" 0.0;
10880                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
10881             }
10882             GENLIST_DESCRIPTION_FLIP_ENABLED
10883          }
10884          GENLIST_PART_FLIP
10885          GENLIST_PART_DISCLIP
10886       }
10887       programs {
10888          // signal: elm,state,%s,active
10889          //   a "check" item named %s went active
10890          // signal: elm,state,%s,passive
10891          //   a "check" item named %s went passive
10892          // default is passive
10893          program { name: "go_active";
10894             signal: "elm,state,selected";
10895             source: "elm";
10896             action: STATE_SET "selected" 0.0;
10897             target: "bg_image";
10898             target: "elm.text.1";
10899             target: "elm.text.2";
10900             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10901          }
10902          program { name: "go_passive";
10903             signal: "elm,state,unselected";
10904             source: "elm";
10905             action: STATE_SET "default" 0.0;
10906             target: "bg_image";
10907             target: "elm.text.1";
10908             target: "elm.text.2";
10909             transition: LINEAR 0.1;
10910          }
10911          program { name: "go_disabled";
10912             signal: "elm,state,disabled";
10913             source: "elm";
10914             action: STATE_SET "disabled" 0.0;
10915             target: "disclip";
10916          }
10917          program { name: "go_enabled";
10918             signal: "elm,state,enabled";
10919             source: "elm";
10920             action: STATE_SET "default" 0.0;
10921             target: "disclip";
10922          }
10923          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
10924          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10925       }
10926    }
10927
10928 // 3.2.34
10929    group { name: "elm/genlist/item/2text.2icon.9/default";
10930       alias: "elm/genlist/item_odd/2text.2icon.9/default";
10931       alias: "elm/genlist/item_compress/2text.2icon.9/default";
10932       alias: "elm/genlist/item_compress_odd/2text.2icon.9/default";
10933       data.item: "stacking" "above";
10934       data.item: "selectraise" "on";
10935       data.item: "texts" "elm.text.1 elm.text.2";
10936       data.item: "contents" "elm.icon.1 elm.icon.2";
10937       data.item: "flips" "elm.flip.content";
10938       images {
10939          image: "00_list_bar_press_1x80.png" COMP;
10940       }
10941       parts {
10942          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10943          GENLIST_PART_BG_IMAGE
10944          GENLIST_PART_BOTTOM_LINE
10945          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10946          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10947          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10948          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10949          part { name: "elm.icon.2";
10950             clip_to: "disclip";
10951             type: SWALLOW;
10952             scale: 1;
10953             description { state: "default" 0.0;
10954                fixed: 1 1;
10955                rel1 {
10956                   relative: 0.0 1.0;
10957                   to_x: "elm.padding.right";
10958                   to_y: "elm.padding.top";
10959                }
10960                rel2 {
10961                   relative: 0.0 0.0;
10962                   to_x: "elm.padding.right";
10963                   to_y: "elm.padding.bottom";
10964                }
10965                align: 1.0 0.5;
10966             }
10967             GENLIST_DESCRIPTION_FLIP_ENABLED
10968          }
10969          part { name: "elm.padding.icon2.left";
10970             clip_to: "disclip";
10971             type: RECT;
10972             scale: 1;
10973             description { state: "default" 0.0;
10974                min: GENLIST_SIZE_16_INC 0;
10975                fixed: 1 0;
10976                rel1.to_x: "elm.icon.2";
10977                rel2 {
10978                   relative: 0.0 1.0;
10979                   to_x: "elm.icon.2";
10980                }
10981                align: 1.0 0.0;
10982                visible: 0;
10983             }
10984          }
10985          part { name: "elm.text.2";
10986             clip_to: "disclip";
10987             type: TEXT;
10988             mouse_events: 0;
10989             scale: 1;
10990             description { state: "default" 0.0;
10991                min: 0 GENLIST_SIZE_48_INC;
10992                fixed: 0 1;
10993                rel1 {
10994                   relative: 1.0 0.0;
10995                   to_x: "elm.padding.left";
10996                   to_y: "elm.padding.bottom";
10997                }
10998                rel2 {
10999                   relative: 0.0 0.0;
11000                   to_x: "elm.padding.icon2.left";
11001                   to_y: "elm.padding.bottom";
11002                }
11003                align: 0.0 1.0;
11004                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
11005                text {
11006                   font: "SLP:style=Medium";
11007                   size: GENLIST_FONT_32_INC;
11008                   min: 0 1;
11009                   align: 0.0 0.5;
11010                   text_class: "slp_medium";
11011                }
11012             }
11013             description { state: "selected" 0.0;
11014                inherit: "default" 0.0;
11015                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
11016             }
11017             GENLIST_DESCRIPTION_FLIP_ENABLED
11018          }
11019          part { name: "elm.text.1";
11020             clip_to: "disclip";
11021             type: TEXT;
11022             mouse_events: 0;
11023             scale: 1;
11024             description { state: "default" 0.0;
11025                min: 0 0;
11026                max: GENLIST_SIZE_560_INC 0;
11027                fixed: 1 0;
11028                rel1 {
11029                   relative: 1.0 1.0;
11030                   to_x: "elm.padding.left";
11031                   to_y: "elm.padding.top";
11032                }
11033                rel2 {
11034                   relative: 1.0 0.0;
11035                   to_x: "elm.padding.left";
11036                   to_y: "elm.text.2";
11037                }
11038                align: 0.0 0.5;
11039                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
11040                text {
11041                   font: "SLP:style=Roman";
11042                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
11043                   min: 1 1;
11044                   align: 0.0 0.5;
11045                   text_class: "list_item";
11046                }
11047             }
11048             description { state: "selected" 0.0;
11049                inherit: "default" 0.0;
11050                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11051             }
11052             GENLIST_DESCRIPTION_FLIP_ENABLED
11053          }
11054          part { name: "elm.padding.icon1.left";
11055             clip_to: "disclip";
11056             type: RECT;
11057             scale: 1;
11058             description { state: "default" 0.0;
11059                min: GENLIST_SIZE_16_INC 0;
11060                fixed: 1 0;
11061                rel1 {
11062                   relative: 1.0 0.0;
11063                   to_x: "elm.text.1";
11064                }
11065                rel2.to_x: "elm.text.1";
11066                align: 0.0 0.0;
11067                visible: 0;
11068             }
11069          }
11070          part { name: "elm.icon.1";
11071             clip_to: "disclip";
11072             type: SWALLOW;
11073             scale: 1;
11074             description { state: "default" 0.0;
11075                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11076                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11077                fixed: 1 1;
11078                rel1 {
11079                   relative: 1.0 1.0;
11080                   to_x: "elm.padding.icon1.left";
11081                   to_y: "elm.padding.top";
11082                }
11083                rel2 {
11084                   relative: 1.0 0.0;
11085                   to_x: "elm.padding.icon1.left";
11086                   to_y: "elm.text.2";
11087                }
11088                align: 0.0 0.5;
11089             }
11090             GENLIST_DESCRIPTION_FLIP_ENABLED
11091          }
11092          GENLIST_PART_FLIP
11093          GENLIST_PART_DISCLIP
11094       }
11095       programs {
11096          // signal: elm,state,%s,active
11097          //   a "check" item named %s went active
11098          // signal: elm,state,%s,passive
11099          //   a "check" item named %s went passive
11100          // default is passive
11101          program { name: "go_active";
11102             signal: "elm,state,selected";
11103             source: "elm";
11104             action: STATE_SET "selected" 0.0;
11105             target: "bg_image";
11106             target: "elm.text.1";
11107             target: "elm.text.2";
11108             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11109          }
11110          program { name: "go_passive";
11111             signal: "elm,state,unselected";
11112             source: "elm";
11113             action: STATE_SET "default" 0.0;
11114             target: "bg_image";
11115             target: "elm.text.1";
11116             target: "elm.text.2";
11117             transition: LINEAR 0.1;
11118          }
11119          program { name: "go_disabled";
11120             signal: "elm,state,disabled";
11121             source: "elm";
11122             action: STATE_SET "disabled" 0.0;
11123             target: "disclip";
11124          }
11125          program { name: "go_enabled";
11126             signal: "elm,state,enabled";
11127             source: "elm";
11128             action: STATE_SET "default" 0.0;
11129             target: "disclip";
11130          }
11131          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
11132          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11133       }
11134    }
11135
11136 // 2.4.4.2 Help Text
11137    group { name: "elm/genlist/item_compress/multiline/1text/default";
11138       alias: "elm/genlist/item_compress_odd/multiline/1text/default";
11139       data.item: "stacking" "above";
11140       data.item: "selectraise" "on";
11141       data.item: "texts" "elm.text.1";
11142       parts {
11143          part { name: "base";
11144             type: RECT;
11145             repeat_events: 1;
11146             description { state: "default" 0.0;
11147                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
11148             }
11149          }
11150          GENLIST_PART_BG_IMAGE
11151          GENLIST_PART_PADDING_TOP( 8 )
11152          GENLIST_PART_PADDING_LEFT( 24 )
11153          GENLIST_PART_PADDING_RIGHT( 24 )
11154          part { name: "elm.text.1";
11155             clip_to: "disclip";
11156             type: TEXTBLOCK;
11157             mouse_events: 0;
11158             scale: 1;
11159             description { state: "default" 0.0;
11160                rel1 {
11161                   relative: 1.0 1.0;
11162                   to_x: "elm.padding.left";
11163                   to_y: "elm.padding.top";
11164                }
11165                rel2 {
11166                   relative: 0.0 1.0;
11167                   to_x: "elm.padding.right";
11168                }
11169                text {
11170                   style: "genlist_style_dialogue_group_help_text";
11171                   min: 0 1;
11172                   align: 0.0 0.5;
11173                }
11174             }
11175          }
11176          GENLIST_PART_DISCLIP
11177       }
11178       programs {
11179          program { name: "go_disabled";
11180             signal: "elm,state,disabled";
11181             source: "elm";
11182             action: STATE_SET "disabled" 0.0;
11183             target: "disclip";
11184          }
11185          program { name: "go_enabled";
11186             signal: "elm,state,enabled";
11187             source: "elm";
11188             action: STATE_SET "default" 0.0;
11189             target: "disclip";
11190          }
11191       }
11192    }
11193
11194 // 3.4.1
11195    group { name: "elm/genlist/item_compress/multiline/2text/default";
11196       alias: "elm/genlist/item_compress_odd/multiline/2text/default";
11197       alias: "elm/genlist/item_compress/multiline.2text/default";
11198       alias: "elm/genlist/item_compress_odd/multiline.2text/default";
11199       data.item: "stacking" "above";
11200       data.item: "selectraise" "on";
11201       data.item: "texts" "elm.text.1 elm.text.2";
11202       parts {
11203          part { name: "base";
11204             type: RECT;
11205             repeat_events: 1;
11206             description { state: "default" 0.0;
11207                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
11208             }
11209          }
11210          GENLIST_PART_BG_IMAGE
11211          GENLIST_PART_BOTTOM_LINE
11212          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11213          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
11214          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11215          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11216          part { name: "elm.text.1";
11217             clip_to: "disclip";
11218             type: TEXT;
11219             mouse_events: 0;
11220             scale: 1;
11221             description { state: "default" 0.0;
11222                min: 0 GENLIST_SIZE_61_INC;
11223                fixed: 0 1;
11224                rel1 {
11225                   relative: 1.0 1.0;
11226                   to_x: "elm.padding.left";
11227                   to_y: "elm.padding.top";
11228                }
11229                rel2 {
11230                   relative: 0.0 1.0;
11231                   to_x: "elm.padding.right";
11232                   to_y: "elm.padding.top";
11233                }
11234                align: 0.0 0.0;
11235                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
11236                text {
11237                   font: "SLP:style=Roman";
11238                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
11239                   min: 0 1;
11240                   align: 0.0 0.5;
11241                   text_class: "list_item";
11242                }
11243             }
11244             description { state: "selected" 0.0;
11245                inherit: "default" 0.0;
11246                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11247             }
11248          }
11249          part { name: "elm.text.2";
11250             clip_to: "disclip";
11251             type: TEXTBLOCK;
11252             mouse_events: 0;
11253             scale: 1;
11254             description { state: "default" 0.0;
11255                rel1 {
11256                   relative: 1.0 1.0;
11257                   to_x: "elm.padding.left";
11258                   to_y: "elm.text.1";
11259                }
11260                rel2 {
11261                   relative: 0.0 0.0;
11262                   to_x: "elm.padding.right";
11263                   to_y: "elm.padding.bottom";
11264                }
11265                text {
11266                   style: "genlist_style_flexible_text_sub";
11267                   min: 0 1;
11268                   align: 0.0 0.5;
11269                }
11270             }
11271          }
11272          GENLIST_PART_DISCLIP
11273       }
11274       programs {
11275          // signal: elm,state,%s,active
11276          //   a "check" item named %s went active
11277          // signal: elm,state,%s,passive
11278          //   a "check" item named %s went passive
11279          // default is passive
11280          program { name: "go_active";
11281             signal: "elm,state,selected";
11282             source: "elm";
11283             action: STATE_SET "selected" 0.0;
11284             target: "bg_image";
11285             target: "elm.text.1";
11286             target: "elm.text.2";
11287             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11288          }
11289          program { name: "go_passive";
11290             signal: "elm,state,unselected";
11291             source: "elm";
11292             action: STATE_SET "default" 0.0;
11293             target: "bg_image";
11294             target: "elm.text.1";
11295             target: "elm.text.2";
11296             transition: LINEAR 0.1;
11297          }
11298          program { name: "go_disabled";
11299             signal: "elm,state,disabled";
11300             source: "elm";
11301             action: STATE_SET "disabled" 0.0;
11302             target: "disclip";
11303          }
11304          program { name: "go_enabled";
11305             signal: "elm,state,enabled";
11306             source: "elm";
11307             action: STATE_SET "default" 0.0;
11308             target: "disclip";
11309          }
11310          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11311       }
11312    }
11313
11314 // 3.4.2
11315    group { name: "elm/genlist/item/multiline/3text.2icon/default";
11316       alias: "elm/genlist/item_odd/multiline/3text.2icon/default";
11317       alias: "elm/genlist/item_compress/multiline/3text.2icon/default";
11318       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon/default";
11319       data.item: "stacking" "above";
11320       data.item: "selectraise" "on";
11321       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11322       data.item: "contents" "elm.icon.1 elm.icon.2";
11323       data.item: "flips" "elm.flip.content";
11324       images {
11325          image: "00_list_bar_press_1x80.png" COMP;
11326       }
11327       parts {
11328          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11329          GENLIST_PART_BG_IMAGE
11330          GENLIST_PART_BOTTOM_LINE
11331          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11332          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11333          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11334          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11335          part { name: "elm.icon.2";
11336             clip_to: "disclip";
11337             type: SWALLOW;
11338             scale: 1;
11339             description { state: "default" 0.0;
11340                min: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
11341                max: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
11342                fixed: 1 1;
11343                rel1 {
11344                   relative: 0.0 1.0;
11345                   to_x: "elm.padding.right";
11346                   to_y: "elm.padding.top";
11347                }
11348                rel2 {
11349                   relative: 0.0 0.0;
11350                   to_x: "elm.padding.right";
11351                   to_y: "elm.padding.bottom";
11352                }
11353                align: 1.0 0.5;
11354             }
11355             GENLIST_DESCRIPTION_FLIP_ENABLED
11356          }
11357          part { name: "elm.padding.icon2.left";
11358             clip_to: "disclip";
11359             type: RECT;
11360             scale: 1;
11361             description { state: "default" 0.0;
11362                min: GENLIST_PADDING_16_INC 0;
11363                fixed: 1 0;
11364                rel1.to_x: "elm.icon.2";
11365                rel2 {
11366                   relative: 0.0 1.0;
11367                   to_x: "elm.icon.2";
11368                }
11369                align: 1.0 0.0;
11370                visible: 0;
11371             }
11372          }
11373          part { name: "elm.text.1.rect";
11374             clip_to: "disclip";
11375             type: RECT;
11376             scale: 1;
11377             description { state: "default" 0.0;
11378                min: 0 GENLIST_SIZE_48_INC;
11379                fixed: 0 1;
11380                rel1 {
11381                   relative: 1.0 1.0;
11382                   to_x: "elm.padding.left";
11383                   to_y: "elm.padding.top";
11384                }
11385                rel2 {
11386                   relative: 0.0 1.0;
11387                   to_x: "elm.padding.icon2.left";
11388                   to_y: "elm.padding.top";
11389                }
11390                align: 0.0 0.0;
11391                visible: 0;
11392             }
11393          }
11394          part { name: "elm.text.1";
11395             clip_to: "disclip";
11396             type: TEXT;
11397             mouse_events: 0;
11398             scale: 1;
11399             description { state: "default" 0.0;
11400                fixed: 1 1;
11401                rel1.to: "elm.text.1.rect";
11402                rel2.to: "elm.text.1.rect";
11403                align: 0.0 0.0;
11404                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11405                text {
11406                   font: "SLP:style=Roman";
11407                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
11408                   min: 0 1;
11409                   align: 0.0 0.5;
11410                   text_class: "list_item";
11411                }
11412             }
11413             description { state: "selected" 0.0;
11414                inherit: "default" 0.0;
11415                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11416             }
11417             GENLIST_DESCRIPTION_FLIP_ENABLED
11418          }
11419          part { name: "elm.text.2";
11420             clip_to: "disclip";
11421             type: TEXT;
11422             mouse_events: 0;
11423             scale: 1;
11424             description { state: "default" 0.0;
11425                min: 0 GENLIST_SIZE_48_INC;
11426                fixed: 0 1;
11427                rel1 {
11428                   relative: 1.0 1.0;
11429                   to_x: "elm.padding.left";
11430                   to_y: "elm.text.1.rect";
11431                }
11432                rel2 {
11433                   relative: 0.0 1.0;
11434                   to_x: "elm.padding.icon2.left";
11435                   to_y: "elm.text.1.rect";
11436                }
11437                align: 0.0 0.0;
11438                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11439                text {
11440                   font: "SLP:style=Roman";
11441                   size: GENLIST_FONT_36_INC;
11442                   min: 0 1;
11443                   align: 0.0 0.5;
11444                   text_class: "slp_roman";
11445                }
11446             }
11447             description { state: "selected" 0.0;
11448                inherit: "default" 0.0;
11449                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11450             }
11451             GENLIST_DESCRIPTION_FLIP_ENABLED
11452          }
11453          part { name: "elm.text.3";
11454             clip_to: "disclip";
11455             type: TEXT;
11456             mouse_events: 0;
11457             scale: 1;
11458             description { state: "default" 0.0;
11459                min: 0 GENLIST_SIZE_35_INC;
11460                fixed: 0 1;
11461                rel1 {
11462                   relative: 1.0 0.0;
11463                   to_x: "elm.padding.icon1.right";
11464                   to_y: "elm.padding.bottom";
11465                }
11466                rel2 {
11467                   relative: 0.0 0.0;
11468                   to_x: "elm.padding.icon2.left";
11469                   to_y: "elm.padding.bottom";
11470                }
11471                align: 0.0 1.0;
11472                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
11473                text {
11474                   font: "SLP:style=Medium";
11475                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
11476                   min: 0 1;
11477                   align: 0.0 0.5;
11478                   text_class: "slp_medium";
11479                }
11480             }
11481             description { state: "selected" 0.0;
11482                inherit: "default" 0.0;
11483                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
11484             }
11485             GENLIST_DESCRIPTION_FLIP_ENABLED
11486          }
11487          part { name: "elm.icon.1";
11488             clip_to: "disclip";
11489             type: SWALLOW;
11490             scale: 1;
11491             description { state: "default" 0.0;
11492                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11493                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11494                fixed: 1 1;
11495                rel1 {
11496                   relative: 1.0 1.0;
11497                   to_x: "elm.padding.left";
11498                   to_y: "elm.text.2";
11499                }
11500                rel2 {
11501                   relative: 1.0 0.0;
11502                   to_x: "elm.padding.left";
11503                   to_y: "elm.padding.bottom";
11504                }
11505                align: 0.0 0.5;
11506             }
11507             GENLIST_DESCRIPTION_FLIP_ENABLED
11508          }
11509          part { name: "elm.padding.icon1.right";
11510             clip_to: "disclip";
11511             type: RECT;
11512             scale: 1;
11513             description { state: "default" 0.0;
11514                min: GENLIST_PADDING_16_INC 0;
11515                fixed: 1 0;
11516                rel1 {
11517                   relative: 1.0 0.0;
11518                   to_x: "elm.icon.1";
11519                }
11520                rel2.to_x: "elm.icon.1";
11521                align: 0.0 0.0;
11522                visible: 0;
11523             }
11524          }
11525          GENLIST_PART_FLIP
11526          GENLIST_PART_DISCLIP
11527       }
11528       programs {
11529          // signal: elm,state,%s,active
11530          //   a "check" item named %s went active
11531          // signal: elm,state,%s,passive
11532          //   a "check" item named %s went passive
11533          // default is passive
11534          program { name: "go_active";
11535             signal: "elm,state,selected";
11536             source: "elm";
11537             action: STATE_SET "selected" 0.0;
11538             target: "bg_image";
11539             target: "elm.text.1";
11540             target: "elm.text.2";
11541             target: "elm.text.3";
11542             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11543          }
11544          program { name: "go_passive";
11545             signal: "elm,state,unselected";
11546             source: "elm";
11547             action: STATE_SET "default" 0.0;
11548             target: "bg_image";
11549             target: "elm.text.1";
11550             target: "elm.text.2";
11551             target: "elm.text.3";
11552             transition: LINEAR 0.1;
11553          }
11554          program { name: "go_disabled";
11555             signal: "elm,state,disabled";
11556             source: "elm";
11557             action: STATE_SET "disabled" 0.0;
11558             target: "disclip";
11559          }
11560          program { name: "go_enabled";
11561             signal: "elm,state,enabled";
11562             source: "elm";
11563             action: STATE_SET "default" 0.0;
11564             target: "disclip";
11565          }
11566          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
11567          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11568       }
11569    }
11570
11571 // 3.4.2
11572    group { name: "elm/genlist/item/multiline/3text.2icon.2/default";
11573       alias: "elm/genlist/item_odd/multiline/3text.2icon.2/default";
11574       alias: "elm/genlist/item_compress/multiline/3text.2icon.2/default";
11575       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon.2/default";
11576       data.item: "stacking" "above";
11577       data.item: "selectraise" "on";
11578       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11579       data.item: "contents" "elm.icon.1 elm.icon.2";
11580       data.item: "flips" "elm.flip.content";
11581       images {
11582          image: "00_list_bar_press_1x80.png" COMP;
11583       }
11584       parts {
11585          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11586          GENLIST_PART_BG_IMAGE
11587          GENLIST_PART_BOTTOM_LINE
11588          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11589          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11590          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11591          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11592          part { name: "elm.icon.2";
11593             clip_to: "disclip";
11594             type: SWALLOW;
11595             scale: 1;
11596             description { state: "default" 0.0;
11597                min: GENLIST_HEIGHT_164_INC GENLIST_HEIGHT_164_INC;
11598                max: GENLIST_HEIGHT_164_INC GENLIST_HEIGHT_164_INC;
11599                fixed: 1 1;
11600                rel1 {
11601                   relative: 0.0 1.0;
11602                   to_x: "elm.padding.right";
11603                   to_y: "elm.padding.top";
11604                }
11605                rel2 {
11606                   relative: 0.0 0.0;
11607                   to_x: "elm.padding.right";
11608                   to_y: "elm.padding.bottom";
11609                }
11610                align: 1.0 0.5;
11611             }
11612             GENLIST_DESCRIPTION_FLIP_ENABLED
11613          }
11614          part { name: "elm.padding.icon2.left";
11615             clip_to: "disclip";
11616             type: RECT;
11617             scale: 1;
11618             description { state: "default" 0.0;
11619                min: GENLIST_PADDING_16_INC 0;
11620                fixed: 1 0;
11621                rel1.to_x: "elm.icon.2";
11622                rel2 {
11623                   relative: 0.0 1.0;
11624                   to_x: "elm.icon.2";
11625                }
11626                align: 1.0 0.0;
11627                visible: 0;
11628             }
11629          }
11630          part { name: "elm.text.1.rect";
11631             clip_to: "disclip";
11632             type: RECT;
11633             scale: 1;
11634             description { state: "default" 0.0;
11635                min: 0 GENLIST_SIZE_48_INC;
11636                fixed: 0 1;
11637                rel1 {
11638                   relative: 1.0 1.0;
11639                   to_x: "elm.padding.left";
11640                   to_y: "elm.padding.top";
11641                }
11642                rel2 {
11643                   relative: 0.0 1.0;
11644                   to_x: "elm.padding.icon2.left";
11645                   to_y: "elm.padding.top";
11646                }
11647                align: 0.0 0.0;
11648                visible: 0;
11649             }
11650          }
11651          part { name: "elm.text.1";
11652             clip_to: "disclip";
11653             type: TEXT;
11654             mouse_events: 0;
11655             scale: 1;
11656             description { state: "default" 0.0;
11657                fixed: 1 1;
11658                rel1.to: "elm.text.1.rect";
11659                rel2.to: "elm.text.1.rect";
11660                align: 0.0 0.0;
11661                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
11662                text {
11663                   font: "SLP:style=Roman";
11664                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
11665                   min: 0 1;
11666                   align: 0.0 0.5;
11667                   text_class: "list_item";
11668                }
11669             }
11670             description { state: "selected" 0.0;
11671                inherit: "default" 0.0;
11672                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11673             }
11674             GENLIST_DESCRIPTION_FLIP_ENABLED
11675          }
11676          part { name: "elm.text.2";
11677             clip_to: "disclip";
11678             type: TEXT;
11679             mouse_events: 0;
11680             scale: 1;
11681             description { state: "default" 0.0;
11682                min: 0 GENLIST_SIZE_48_INC;
11683                fixed: 0 1;
11684                rel1 {
11685                   relative: 1.0 1.0;
11686                   to_x: "elm.padding.left";
11687                   to_y: "elm.text.1.rect";
11688                }
11689                rel2 {
11690                   relative: 0.0 1.0;
11691                   to_x: "elm.padding.icon2.left";
11692                   to_y: "elm.text.1.rect";
11693                }
11694                align: 0.0 0.0;
11695                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR;
11696                text {
11697                   font: "SLP:style=Roman";
11698                   size: GENLIST_3LINE_MAIN_TEXT_02_SIZE;
11699                   min: 0 1;
11700                   align: 0.0 0.5;
11701                   text_class: "slp_roman";
11702                }
11703             }
11704             description { state: "selected" 0.0;
11705                inherit: "default" 0.0;
11706                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR_FOCUS;
11707             }
11708             GENLIST_DESCRIPTION_FLIP_ENABLED
11709          }
11710          part { name: "elm.text.3";
11711             clip_to: "disclip";
11712             type: TEXT;
11713             mouse_events: 0;
11714             scale: 1;
11715             description { state: "default" 0.0;
11716                min: 0 GENLIST_SIZE_35_INC;
11717                fixed: 0 1;
11718                rel1 {
11719                   relative: 1.0 0.0;
11720                   to_x: "elm.padding.icon1.right";
11721                   to_y: "elm.padding.bottom";
11722                }
11723                rel2 {
11724                   relative: 0.0 0.0;
11725                   to_x: "elm.padding.icon2.left";
11726                   to_y: "elm.padding.bottom";
11727                }
11728                align: 0.0 1.0;
11729                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
11730                text {
11731                   font: "SLP:style=Medium";
11732                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
11733                   min: 0 1;
11734                   align: 0.0 0.5;
11735                   text_class: "slp_medium";
11736                }
11737             }
11738             description { state: "selected" 0.0;
11739                inherit: "default" 0.0;
11740                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
11741             }
11742             GENLIST_DESCRIPTION_FLIP_ENABLED
11743          }
11744          part { name: "elm.icon.1";
11745             clip_to: "disclip";
11746             type: SWALLOW;
11747             scale: 1;
11748             description { state: "default" 0.0;
11749                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11750                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11751                fixed: 1 1;
11752                rel1 {
11753                   relative: 1.0 1.0;
11754                   to_x: "elm.padding.left";
11755                   to_y: "elm.text.2";
11756                }
11757                rel2 {
11758                   relative: 1.0 0.0;
11759                   to_x: "elm.padding.left";
11760                   to_y: "elm.padding.bottom";
11761                }
11762                align: 0.0 0.5;
11763             }
11764             GENLIST_DESCRIPTION_FLIP_ENABLED
11765          }
11766          part { name: "elm.padding.icon1.right";
11767             clip_to: "disclip";
11768             type: RECT;
11769             scale: 1;
11770             description { state: "default" 0.0;
11771                min: GENLIST_PADDING_16_INC 0;
11772                fixed: 1 0;
11773                rel1 {
11774                   relative: 1.0 0.0;
11775                   to_x: "elm.icon.1";
11776                }
11777                rel2.to_x: "elm.icon.1";
11778                align: 0.0 0.0;
11779                visible: 0;
11780             }
11781          }
11782          GENLIST_PART_FLIP
11783          GENLIST_PART_DISCLIP
11784       }
11785       programs {
11786          // signal: elm,state,%s,active
11787          //   a "check" item named %s went active
11788          // signal: elm,state,%s,passive
11789          //   a "check" item named %s went passive
11790          // default is passive
11791          program { name: "go_active";
11792             signal: "elm,state,selected";
11793             source: "elm";
11794             action: STATE_SET "selected" 0.0;
11795             target: "bg_image";
11796             target: "elm.text.1";
11797             target: "elm.text.2";
11798             target: "elm.text.3";
11799             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11800          }
11801          program { name: "go_passive";
11802             signal: "elm,state,unselected";
11803             source: "elm";
11804             action: STATE_SET "default" 0.0;
11805             target: "bg_image";
11806             target: "elm.text.1";
11807             target: "elm.text.2";
11808             target: "elm.text.3";
11809             transition: LINEAR 0.1;
11810          }
11811          program { name: "go_disabled";
11812             signal: "elm,state,disabled";
11813             source: "elm";
11814             action: STATE_SET "disabled" 0.0;
11815             target: "disclip";
11816          }
11817          program { name: "go_enabled";
11818             signal: "elm,state,enabled";
11819             source: "elm";
11820             action: STATE_SET "default" 0.0;
11821             target: "disclip";
11822          }
11823          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
11824          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11825       }
11826    }
11827
11828 // 3.4.3
11829    group { name: "elm/genlist/item/multiline/3text.1icon/default";
11830       alias: "elm/genlist/item_odd/multiline/3text.1icon/default";
11831       alias: "elm/genlist/item_compress/multiline/3text.1icon/default";
11832       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon/default";
11833       data.item: "stacking" "above";
11834       data.item: "selectraise" "on";
11835       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11836       data.item: "contents" "elm.icon";
11837       data.item: "flips" "elm.flip.content";
11838       images {
11839          image: "00_list_bar_press_1x80.png" COMP;
11840       }
11841       parts {
11842          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11843          GENLIST_PART_BG_IMAGE
11844          GENLIST_PART_BOTTOM_LINE
11845          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11846          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11847          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11848          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11849          part { name: "elm.text.1.rect";
11850             clip_to: "disclip";
11851             type: RECT;
11852             scale: 1;
11853             description { state: "default" 0.0;
11854                min: 0 GENLIST_SIZE_48_INC;
11855                fixed: 0 1;
11856                rel1 {
11857                   relative: 1.0 1.0;
11858                   to_x: "elm.padding.left";
11859                   to_y: "elm.padding.top";
11860                }
11861                rel2 {
11862                   relative: 0.0 1.0;
11863                   to_x: "elm.padding.right";
11864                   to_y: "elm.padding.top";
11865                }
11866                align: 0.0 0.0;
11867                visible: 0;
11868             }
11869          }
11870          part { name: "elm.text.1";
11871             clip_to: "disclip";
11872             type: TEXT;
11873             mouse_events: 0;
11874             scale: 1;
11875             description { state: "default" 0.0;
11876                fixed: 1 1;
11877                rel1.to: "elm.text.1.rect";
11878                rel2.to: "elm.text.1.rect";
11879                align: 0.0 0.0;
11880                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11881                text {
11882                   font: "SLP:style=Roman";
11883                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
11884                   min: 0 1;
11885                   align: 0.0 0.5;
11886                   text_class: "list_item";
11887                }
11888             }
11889             description { state: "selected" 0.0;
11890                inherit: "default" 0.0;
11891                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11892             }
11893             GENLIST_DESCRIPTION_FLIP_ENABLED
11894          }
11895          part { name: "elm.text.2";
11896             clip_to: "disclip";
11897             type: TEXT;
11898             mouse_events: 0;
11899             scale: 1;
11900             description { state: "default" 0.0;
11901                min: 0 GENLIST_SIZE_48_INC;
11902                fixed: 0 1;
11903                rel1 {
11904                   relative: 1.0 1.0;
11905                   to_x: "elm.padding.left";
11906                   to_y: "elm.text.1.rect";
11907                }
11908                rel2 {
11909                   relative: 0.0 1.0;
11910                   to_x: "elm.padding.right";
11911                   to_y: "elm.text.1.rect";
11912                }
11913                align: 0.0 0.0;
11914                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11915                text {
11916                   font: "SLP:style=Roman";
11917                   size: GENLIST_FONT_36_INC;
11918                   min: 0 1;
11919                   align: 0.0 0.5;
11920                   text_class: "slp_roman";
11921                }
11922             }
11923             description { state: "selected" 0.0;
11924                inherit: "default" 0.0;
11925                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11926             }
11927             GENLIST_DESCRIPTION_FLIP_ENABLED
11928          }
11929          part { name: "elm.text.3";
11930             clip_to: "disclip";
11931             type: TEXT;
11932             mouse_events: 0;
11933             scale: 1;
11934             description { state: "default" 0.0;
11935                min: 0 GENLIST_SIZE_35_INC;
11936                fixed: 0 1;
11937                rel1 {
11938                   relative: 1.0 0.0;
11939                   to_x: "elm.padding.icon.right";
11940                   to_y: "elm.padding.bottom";
11941                }
11942                rel2 {
11943                   relative: 0.0 0.0;
11944                   to_x: "elm.padding.right";
11945                   to_y: "elm.padding.bottom";
11946                }
11947                align: 0.0 1.0;
11948                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
11949                text {
11950                   font: "SLP:style=Medium";
11951                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
11952                   min: 0 1;
11953                   align: 0.0 0.5;
11954                   text_class: "slp_medium";
11955                }
11956             }
11957             description { state: "selected" 0.0;
11958                inherit: "default" 0.0;
11959                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
11960             }
11961             GENLIST_DESCRIPTION_FLIP_ENABLED
11962          }
11963          part { name: "elm.icon";
11964             clip_to: "disclip";
11965             type: SWALLOW;
11966             scale: 1;
11967             description { state: "default" 0.0;
11968                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11969                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11970                fixed: 1 1;
11971                rel1 {
11972                   relative: 1.0 0.0;
11973                   to_x: "elm.padding.left";
11974                   to_y: "elm.text.3";
11975                }
11976                rel2 {
11977                   relative: 1.0 0.0;
11978                   to_x: "elm.padding.left";
11979                   to_y: "elm.padding.bottom";
11980                }
11981                align: 0.0 0.5;
11982             }
11983             GENLIST_DESCRIPTION_FLIP_ENABLED
11984          }
11985          part { name: "elm.padding.icon.right";
11986             clip_to: "disclip";
11987             type: RECT;
11988             scale: 1;
11989             description { state: "default" 0.0;
11990                min: GENLIST_PADDING_16_INC 0;
11991                fixed: 1 0;
11992                rel1 {
11993                   relative: 1.0 0.0;
11994                   to_x: "elm.icon";
11995                }
11996                rel2.to_x: "elm.icon";
11997                align: 0.0 0.0;
11998                visible: 0;
11999             }
12000          }
12001          GENLIST_PART_FLIP
12002          GENLIST_PART_DISCLIP
12003       }
12004       programs {
12005          // signal: elm,state,%s,active
12006          //   a "check" item named %s went active
12007          // signal: elm,state,%s,passive
12008          //   a "check" item named %s went passive
12009          // default is passive
12010          program { name: "go_active";
12011             signal: "elm,state,selected";
12012             source: "elm";
12013             action: STATE_SET "selected" 0.0;
12014             target: "bg_image";
12015             target: "elm.text.1";
12016             target: "elm.text.2";
12017             target: "elm.text.3";
12018             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12019          }
12020          program { name: "go_passive";
12021             signal: "elm,state,unselected";
12022             source: "elm";
12023             action: STATE_SET "default" 0.0;
12024             target: "bg_image";
12025             target: "elm.text.1";
12026             target: "elm.text.2";
12027             target: "elm.text.3";
12028             transition: LINEAR 0.1;
12029          }
12030          program { name: "go_disabled";
12031             signal: "elm,state,disabled";
12032             source: "elm";
12033             action: STATE_SET "disabled" 0.0;
12034             target: "disclip";
12035          }
12036          program { name: "go_enabled";
12037             signal: "elm,state,enabled";
12038             source: "elm";
12039             action: STATE_SET "default" 0.0;
12040             target: "disclip";
12041          }
12042          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
12043          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12044       }
12045    }
12046
12047 // 3.4.3
12048    group { name: "elm/genlist/item/multiline/3text.1icon.2/default";
12049       alias: "elm/genlist/item_odd/multiline/3text.1icon.2/default";
12050       alias: "elm/genlist/item_compress/multiline/3text.1icon.2/default";
12051       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon.2/default";
12052       data.item: "stacking" "above";
12053       data.item: "selectraise" "on";
12054       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
12055       data.item: "contents" "elm.icon";
12056       data.item: "flips" "elm.flip.content";
12057       images {
12058          image: "00_list_bar_press_1x80.png" COMP;
12059       }
12060       parts {
12061          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
12062          GENLIST_PART_BG_IMAGE
12063          GENLIST_PART_BOTTOM_LINE
12064          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
12065          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
12066          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12067          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12068          part { name: "elm.text.1.rect";
12069             clip_to: "disclip";
12070             type: RECT;
12071             scale: 1;
12072             description { state: "default" 0.0;
12073                min: 0 GENLIST_SIZE_48_INC;
12074                fixed: 0 1;
12075                rel1 {
12076                   relative: 1.0 1.0;
12077                   to_x: "elm.padding.left";
12078                   to_y: "elm.padding.top";
12079                }
12080                rel2 {
12081                   relative: 0.0 1.0;
12082                   to_x: "elm.padding.right";
12083                   to_y: "elm.padding.top";
12084                }
12085                align: 0.0 0.0;
12086                visible: 0;
12087             }
12088          }
12089          part { name: "elm.text.1";
12090             clip_to: "disclip";
12091             type: TEXT;
12092             mouse_events: 0;
12093             scale: 1;
12094             description { state: "default" 0.0;
12095                fixed: 1 1;
12096                rel1.to: "elm.text.1.rect";
12097                rel2.to: "elm.text.1.rect";
12098                align: 0.0 0.0;
12099                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
12100                text {
12101                   font: "SLP:style=Roman";
12102                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
12103                   min: 0 1;
12104                   align: 0.0 0.5;
12105                   text_class: "list_item";
12106                }
12107             }
12108             description { state: "selected" 0.0;
12109                inherit: "default" 0.0;
12110                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
12111             }
12112             GENLIST_DESCRIPTION_FLIP_ENABLED
12113          }
12114          part { name: "elm.text.2";
12115             clip_to: "disclip";
12116             type: TEXT;
12117             mouse_events: 0;
12118             scale: 1;
12119             description { state: "default" 0.0;
12120                min: 0 GENLIST_SIZE_48_INC;
12121                fixed: 0 1;
12122                rel1 {
12123                   relative: 1.0 1.0;
12124                   to_x: "elm.padding.left";
12125                   to_y: "elm.text.1.rect";
12126                }
12127                rel2 {
12128                   relative: 0.0 1.0;
12129                   to_x: "elm.padding.right";
12130                   to_y: "elm.text.1.rect";
12131                }
12132                align: 0.0 0.0;
12133                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR;
12134                text {
12135                   font: "SLP:style=Roman";
12136                   size: GENLIST_3LINE_MAIN_TEXT_02_SIZE;
12137                   min: 0 1;
12138                   align: 0.0 0.5;
12139                   text_class: "slp_roman";
12140                }
12141             }
12142             description { state: "selected" 0.0;
12143                inherit: "default" 0.0;
12144                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR_FOCUS;
12145             }
12146             GENLIST_DESCRIPTION_FLIP_ENABLED
12147          }
12148          part { name: "elm.text.3";
12149             clip_to: "disclip";
12150             type: TEXT;
12151             mouse_events: 0;
12152             scale: 1;
12153             description { state: "default" 0.0;
12154                min: 0 GENLIST_SIZE_35_INC;
12155                fixed: 0 1;
12156                rel1 {
12157                   relative: 1.0 0.0;
12158                   to_x: "elm.padding.icon.right";
12159                   to_y: "elm.padding.bottom";
12160                }
12161                rel2 {
12162                   relative: 0.0 0.0;
12163                   to_x: "elm.padding.right";
12164                   to_y: "elm.padding.bottom";
12165                }
12166                align: 0.0 1.0;
12167                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
12168                text {
12169                   font: "SLP:style=Medium";
12170                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
12171                   min: 0 1;
12172                   align: 0.0 0.5;
12173                   text_class: "slp_medium";
12174                }
12175             }
12176             description { state: "selected" 0.0;
12177                inherit: "default" 0.0;
12178                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
12179             }
12180             GENLIST_DESCRIPTION_FLIP_ENABLED
12181          }
12182          part { name: "elm.icon";
12183             clip_to: "disclip";
12184             type: SWALLOW;
12185             scale: 1;
12186             description { state: "default" 0.0;
12187                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12188                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12189                fixed: 1 1;
12190                rel1 {
12191                   relative: 1.0 0.0;
12192                   to_x: "elm.padding.left";
12193                   to_y: "elm.text.3";
12194                }
12195                rel2 {
12196                   relative: 1.0 0.0;
12197                   to_x: "elm.padding.left";
12198                   to_y: "elm.padding.bottom";
12199                }
12200                align: 0.0 0.5;
12201             }
12202             GENLIST_DESCRIPTION_FLIP_ENABLED
12203          }
12204          part { name: "elm.padding.icon.right";
12205             clip_to: "disclip";
12206             type: RECT;
12207             scale: 1;
12208             description { state: "default" 0.0;
12209                min: GENLIST_PADDING_16_INC 0;
12210                fixed: 1 0;
12211                rel1 {
12212                   relative: 1.0 0.0;
12213                   to_x: "elm.icon";
12214                }
12215                rel2.to_x: "elm.icon";
12216                align: 0.0 0.0;
12217                visible: 0;
12218             }
12219          }
12220          GENLIST_PART_FLIP
12221          GENLIST_PART_DISCLIP
12222       }
12223       programs {
12224          // signal: elm,state,%s,active
12225          //   a "check" item named %s went active
12226          // signal: elm,state,%s,passive
12227          //   a "check" item named %s went passive
12228          // default is passive
12229          program { name: "go_active";
12230             signal: "elm,state,selected";
12231             source: "elm";
12232             action: STATE_SET "selected" 0.0;
12233             target: "bg_image";
12234             target: "elm.text.1";
12235             target: "elm.text.2";
12236             target: "elm.text.3";
12237             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12238          }
12239          program { name: "go_passive";
12240             signal: "elm,state,unselected";
12241             source: "elm";
12242             action: STATE_SET "default" 0.0;
12243             target: "bg_image";
12244             target: "elm.text.1";
12245             target: "elm.text.2";
12246             target: "elm.text.3";
12247             transition: LINEAR 0.1;
12248          }
12249          program { name: "go_disabled";
12250             signal: "elm,state,disabled";
12251             source: "elm";
12252             action: STATE_SET "disabled" 0.0;
12253             target: "disclip";
12254          }
12255          program { name: "go_enabled";
12256             signal: "elm,state,enabled";
12257             source: "elm";
12258             action: STATE_SET "default" 0.0;
12259             target: "disclip";
12260          }
12261          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
12262          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12263       }
12264    }
12265
12266    // 2.2.3.11
12267    group { name: "elm/genlist/item/multiline/4text.4icon.1/default";
12268       alias: "elm/genlist/item_odd/multiline/4text.4icon.1/default";
12269       alias: "elm/genlist/item_compress/multiline/4text.4icon.1/default";
12270       alias: "elm/genlist/item_compress_odd/multiline/4text.4icon.1/default";
12271       data.item: "stacking" "above";
12272       data.item: "selectraise" "on";
12273       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
12274       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4";
12275       data.item: "flips" "elm.flip.content";
12276       images {
12277          image: "00_list_bar_press_1x80.png" COMP;
12278       }
12279       parts {
12280          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
12281          GENLIST_PART_BG_IMAGE
12282          GENLIST_PART_BOTTOM_LINE
12283          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
12284          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
12285          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12286          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12287
12288          part { name: "elm.icon.1";
12289             clip_to: "disclip";
12290             type: SWALLOW;
12291             scale: 1;
12292             description { state: "default" 0.0;
12293                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12294                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12295                fixed: 1 1;
12296                rel1 {
12297                   relative: 1.0 1.0;
12298                   to_x: "elm.padding.left";
12299                   to_y: "elm.padding.top";
12300                }
12301                rel2 {
12302                   relative: 1.0 0.0;
12303                   to_x: "elm.padding.left";
12304                   to_y: "elm.padding.bottom";
12305                }
12306                align: 0.0 0.5;
12307             }
12308             GENLIST_DESCRIPTION_FLIP_ENABLED
12309          }
12310          part { name: "elm.padding.icon1.right";
12311             clip_to: "disclip";
12312             type: RECT;
12313             scale: 1;
12314             description { state: "default" 0.0;
12315                min: GENLIST_PADDING_16_INC 0;
12316                fixed: 1 0;
12317                rel1 {
12318                   relative: 1.0 0.0;
12319                   to_x: "elm.icon.1";
12320                }
12321                rel2.to_x: "elm.icon.1";
12322                align: 0.0 0.0;
12323                visible: 0;
12324             }
12325          }
12326          part { name: "elm.icon.3";
12327             clip_to: "disclip";
12328             type: SWALLOW;
12329             scale: 1;
12330             description { state: "default" 0.0;
12331                min: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
12332                max: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
12333                fixed: 1 1;
12334                rel1 {
12335                   relative: 0.0 1.0;
12336                   to_x: "elm.padding.right";
12337                   to_y: "elm.padding.top";
12338                }
12339                rel2 {
12340                   relative: 0.0 0.0;
12341                   to_x: "elm.padding.right";
12342                   to_y: "elm.padding.bottom";
12343                }
12344                align: 1.0 0.0;
12345             }
12346             GENLIST_DESCRIPTION_FLIP_ENABLED
12347          }
12348          part { name: "elm.icon.3.left";
12349             clip_to: "disclip";
12350             type: RECT;
12351             scale: 1;
12352             description { state: "default" 0.0;
12353                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12354                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12355                fixed: 1 1;
12356                rel1 {
12357                   relative: 0.0 1.0;
12358                   to_x: "elm.icon.3";
12359                   to_y: "elm.padding.top";
12360                }
12361                rel2 {
12362                   relative: 0.0 0.0;
12363                   to_x: "elm.icon.3";
12364                   to_y: "elm.padding.bottom";
12365                }
12366                align: 1.0 0.0;
12367                visible: 0;
12368             }
12369             GENLIST_DESCRIPTION_FLIP_ENABLED
12370          }
12371          part { name: "elm.icon.4";
12372             clip_to: "disclip";
12373             type: SWALLOW;
12374             scale: 1;
12375             description { state: "default" 0.0;
12376                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12377                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12378                fixed: 1 1;
12379                rel1 {
12380                   relative: 0.0 1.0;
12381                   to_x: "elm.icon.3.left";
12382                   to_y: "elm.padding.top";
12383                }
12384                rel2 {
12385                   relative: 0.0 0.0;
12386                   to_x: "elm.icon.3.left";
12387                   to_y: "elm.text.2";
12388                }
12389                align: 1.0 0.5;
12390             }
12391             GENLIST_DESCRIPTION_FLIP_ENABLED
12392          }
12393          part { name: "elm.icon.4.left";
12394             clip_to: "disclip";
12395             type: RECT;
12396             scale: 1;
12397             description { state: "default" 0.0;
12398                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12399                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12400                fixed: 1 1;
12401                rel1 {
12402                   relative: 0.0 1.0;
12403                   to_x: "elm.icon.4";
12404                   to_y: "elm.padding.top";
12405                }
12406                rel2 {
12407                   relative: 0.0 0.0;
12408                   to_x: "elm.icon.4";
12409                   to_y: "elm.padding.bottom";
12410                }
12411                align: 1.0 0.0;
12412                visible: 0;
12413             }
12414             GENLIST_DESCRIPTION_FLIP_ENABLED
12415          }
12416
12417          part { name: "elm.text.1.rect";
12418             clip_to: "disclip";
12419             type: RECT;
12420             scale: 1;
12421             description { state: "default" 0.0;
12422                min: 0 GENLIST_SIZE_60_INC;
12423                fixed: 0 1;
12424                rel1 {
12425                   relative: 1.0 1.0;
12426                   to_x: "elm.padding.left";
12427                   to_y: "elm.padding.top";
12428                }
12429                rel2 {
12430                   relative: 0.0 1.0;
12431                   to_x: "elm.icon.4.left";
12432                   to_y: "elm.padding.top";
12433                }
12434                align: 0.0 0.0;
12435                visible: 0;
12436             }
12437          }
12438          part { name: "elm.text.1";
12439             clip_to: "disclip";
12440             type: TEXT;
12441             mouse_events: 0;
12442             scale: 1;
12443             description { state: "default" 0.0;
12444                fixed: 1 1;
12445                rel1 {
12446                   relative: 1.0 1.0;
12447                   to_x: "elm.padding.icon1.right";
12448                   to_y: "elm.padding.top";
12449                }
12450                rel2.to: "elm.text.1.rect";
12451                align: 0.0 0.0;
12452                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
12453                text {
12454                   font: "SLP:style=Roman";
12455                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
12456                   min: 0 1;
12457                   align: 0.0 0.5;
12458                   text_class: "list_item";
12459                }
12460             }
12461             description { state: "selected" 0.0;
12462                inherit: "default" 0.0;
12463                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
12464             }
12465             GENLIST_DESCRIPTION_FLIP_ENABLED
12466          }
12467          part { name: "elm.text.1.bottom";
12468             clip_to: "disclip";
12469             type: RECT;
12470             scale: 1;
12471             description { state: "default" 0.0;
12472                min: 0 GENLIST_SIZE_4_INC;
12473                fixed: 1 1;
12474                rel1 {
12475                   relative: 1.0 1.0;
12476                   to_x: "elm.padding.icon1.right";
12477                   to_y: "elm.text.1.rect";
12478                }
12479                rel2 {
12480                   relative: 0.0 1.0;
12481                   to_x: "elm.padding.right";
12482                   to_y: "elm.text.1.rect";
12483                }
12484                align: 0.0 1.0;
12485                visible: 0;
12486             }
12487             GENLIST_DESCRIPTION_FLIP_ENABLED
12488          }
12489          part { name: "elm.text.2";
12490             clip_to: "disclip";
12491             type: TEXT;
12492             mouse_events: 0;
12493             scale: 1;
12494             description { state: "default" 0.0;
12495                min: 0 GENLIST_SIZE_40_INC;
12496                fixed: 0 1;
12497                rel1 {
12498                   relative: 1.0 1.0;
12499                   to_x: "elm.padding.icon1.right";
12500                   to_y: "elm.text.1.bottom";
12501                }
12502                rel2 {
12503                   relative: 0.0 1.0;
12504                   to_x: "elm.padding.right";
12505                   to_y: "elm.text.1.bottom";
12506                }
12507                align: 0.0 0.0;
12508                color: GENLIST_NAME_TEXT_COLOR;
12509                text {
12510                   font: "SLP:style=Medium";
12511                   size: GENLIST_FONT_32_INC;
12512                   min: 0 1;
12513                   align: 0.0 0.5;
12514                   text_class: "slp_medium";
12515                }
12516             }
12517             description { state: "selected" 0.0;
12518                inherit: "default" 0.0;
12519                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
12520             }
12521             GENLIST_DESCRIPTION_FLIP_ENABLED
12522          }
12523          part { name: "elm.text.4";
12524             clip_to: "disclip";
12525             type: TEXT;
12526             mouse_events: 0;
12527             scale: 1;
12528             description { state: "default" 0.0;
12529                min: GENLIST_SIZE_133_INC GENLIST_SIZE_40_INC;
12530                fixed: 1 1;
12531                rel1 {
12532                   relative: 0.0 1.0;
12533                   to_x: "elm.padding.right";
12534                   to_y: "elm.text.2";
12535                }
12536                rel2 {
12537                   relative: 0.0 0.0;
12538                   to_x: "elm.padding.right";
12539                   to_y: "elm.padding.bottom";
12540                }
12541                align: 1.0 0.0;
12542                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12543                text {
12544                   font: "SLP:style=Medium";
12545                   size: GENLIST_FONT_32_INC;
12546                   min: 0 1;
12547                   align: 0.0 0.5;
12548                   text_class: "slp_medium";
12549                }
12550             }
12551             description { state: "selected" 0.0;
12552                inherit: "default" 0.0;
12553                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
12554             }
12555             GENLIST_DESCRIPTION_FLIP_ENABLED
12556          }
12557          part { name: "elm.text.4.left";
12558             clip_to: "disclip";
12559             type: RECT;
12560             scale: 1;
12561             description { state: "default" 0.0;
12562                min: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
12563                max: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
12564                fixed: 1 1;
12565                color: 255 0 255 255;
12566                rel1 {
12567                   relative: 0.0 1.0;
12568                   to_x: "elm.text.4";
12569                   to_y: "elm.text.2";
12570                }
12571                rel2 {
12572                   relative: 0.0 0.0;
12573                   to_x: "elm.text.4";
12574                   to_y: "elm.padding.bottom";
12575                }
12576                align: 1.0 0.0;
12577                visible: 0;
12578             }
12579             GENLIST_DESCRIPTION_FLIP_ENABLED
12580          }
12581          part { name: "elm.text.3";
12582             clip_to: "disclip";
12583             type: TEXT;
12584             mouse_events: 0;
12585             scale: 1;
12586             description { state: "default" 0.0;
12587                min: 0 GENLIST_SIZE_40_INC;
12588                fixed: 0 1;
12589                rel1 {
12590                   relative: 1.0 0.0;
12591                   to_x: "elm.padding.icon1.right";
12592                   to_y: "elm.padding.bottom";
12593                }
12594                rel2 {
12595                   relative: 0.0 0.0;
12596                   to_x: "elm.text.4.left";
12597                   to_y: "elm.padding.bottom";
12598                }
12599                align: 0.0 1.0;
12600                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12601                text {
12602                   font: "SLP:style=Medium";
12603                   size: GENLIST_FONT_32_INC;
12604                   min: 0 1;
12605                   align: 0.0 0.5;
12606                   text_class: "slp_medium";
12607                }
12608             }
12609             description { state: "selected" 0.0;
12610                inherit: "default" 0.0;
12611                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
12612             }
12613             GENLIST_DESCRIPTION_FLIP_ENABLED
12614          }
12615
12616          GENLIST_PART_FLIP
12617          GENLIST_PART_DISCLIP
12618       }
12619       programs {
12620          program { name: "go_active";
12621             signal: "elm,state,selected";
12622             source: "elm";
12623             action: STATE_SET "selected" 0.0;
12624             target: "bg_image";
12625             target: "elm.text.1";
12626             target: "elm.text.2";
12627             target: "elm.text.3";
12628             target: "elm.text.4";
12629          }
12630          program { name: "go_passive";
12631             signal: "elm,state,unselected";
12632             source: "elm";
12633             action: STATE_SET "default" 0.0;
12634             target: "bg_image";
12635             target: "elm.text.1";
12636             target: "elm.text.2";
12637             target: "elm.text.3";
12638             target: "elm.text.4";
12639             transition: LINEAR 0.1;
12640          }
12641          program { name: "go_disabled";
12642             signal: "elm,state,disabled";
12643             source: "elm";
12644             action: STATE_SET "disabled" 0.0;
12645             target: "disclip";
12646          }
12647          program { name: "go_enabled";
12648             signal: "elm,state,enabled";
12649             source: "elm";
12650             action: STATE_SET "default" 0.0;
12651             target: "disclip";
12652          }
12653       }
12654    }
12655
12656    // 2.2.3.12
12657    group { name: "elm/genlist/item/multiline/4text.6icon.8/default";
12658       alias: "elm/genlist/item_odd/multiline/4text.6icon.8/default";
12659       alias: "elm/genlist/item_compress/multiline/4text.6icon.8/default";
12660       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.8/default";
12661       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12662
12663       parts {
12664          part { name: "elm.text.1";
12665             description { state: "default" 0.0;
12666                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
12667             }
12668          }
12669       }
12670    }
12671
12672    // 2.2.3.9
12673    group { name: "elm/genlist/item/multiline/4text.6icon.5/default";
12674       alias: "elm/genlist/item_odd/multiline/4text.6icon.5/default";
12675       alias: "elm/genlist/item_compress/multiline/4text.6icon.5/default";
12676       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.5/default";
12677       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12678       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4 elm.icon.5";
12679
12680       parts {
12681          part { name: "elm.icon.5";
12682             clip_to: "disclip";
12683             type: SWALLOW;
12684             scale: 1;
12685             description { state: "default" 0.0;
12686                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12687                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12688                fixed: 1 1;
12689                rel1 {
12690                   relative: 0.0 1.0;
12691                   to_x: "elm.icon.4.left";
12692                   to_y: "elm.padding.top";
12693                }
12694                rel2 {
12695                   relative: 0.0 0.0;
12696                   to_x: "elm.icon.4.left";
12697                   to_y: "elm.text.2";
12698                }
12699                align: 1.0 0.5;
12700             }
12701             GENLIST_DESCRIPTION_FLIP_ENABLED
12702          }
12703          part { name: "elm.icon.5.left";
12704             clip_to: "disclip";
12705             type: RECT;
12706             scale: 1;
12707             description { state: "default" 0.0;
12708                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12709                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12710                fixed: 1 1;
12711                rel1 {
12712                   relative: 0.0 1.0;
12713                   to_x: "elm.icon.5";
12714                   to_y: "elm.padding.top";
12715                }
12716                rel2 {
12717                   relative: 0.0 0.0;
12718                   to_x: "elm.icon.5";
12719                   to_y: "elm.padding.bottom";
12720                }
12721                align: 1.0 0.0;
12722                visible: 0;
12723             }
12724             GENLIST_DESCRIPTION_FLIP_ENABLED
12725          }
12726          part { name: "elm.text.1.rect";
12727             description { state: "default" 0.0;
12728                rel2.to_x: "elm.icon.5.left";
12729             }
12730          }
12731       }
12732    }
12733
12734    // 2.2.3.10
12735    group { name: "elm/genlist/item/multiline/4text.6icon.6/default";
12736       alias: "elm/genlist/item_odd/multiline/4text.6icon.6/default";
12737       alias: "elm/genlist/item_compress/multiline/4text.6icon.6/default";
12738       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.6/default";
12739       inherit: "elm/genlist/item/multiline/4text.6icon.5/default";
12740
12741       parts {
12742          part { name: "elm.text.1";
12743             description { state: "default" 0.0;
12744                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
12745             }
12746          }
12747       }
12748    }
12749
12750    // 2.2.3.7
12751    group { name: "elm/genlist/item/multiline/4text.6icon.3/default";
12752       alias: "elm/genlist/item_odd/multiline/4text.6icon.3/default";
12753       alias: "elm/genlist/item_compress/multiline/4text.6icon.3/default";
12754       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.3/default";
12755       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12756       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
12757
12758       parts {
12759           part { name: "elm.icon.2";
12760             clip_to: "disclip";
12761             type: SWALLOW;
12762             scale: 1;
12763             description { state: "default" 0.0;
12764                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12765                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12766                fixed: 1 1;
12767                rel1 {
12768                   relative: 1.0 1.0;
12769                   to_x: "elm.padding.icon1.right";
12770                   to_y: "elm.text.2";
12771                }
12772                rel2 {
12773                   relative: 1.0 0.0;
12774                   to_x: "elm.padding.icon1.right";
12775                   to_y: "elm.padding.bottom";
12776                }
12777                align: 0.0 0.5;
12778             }
12779             GENLIST_DESCRIPTION_FLIP_ENABLED
12780          }
12781          part { name: "elm.padding.icon2.right";
12782             clip_to: "disclip";
12783             type: RECT;
12784             scale: 1;
12785             description { state: "default" 0.0;
12786                min: GENLIST_SIZE_16_INC 0;
12787                fixed: 1 0;
12788                rel1 {
12789                   relative: 1.0 0.0;
12790                   to_x: "elm.icon.2";
12791                }
12792                rel2.to_x: "elm.icon.2";
12793                align: 0.0 0.0;
12794                visible: 0;
12795             }
12796          }
12797          part { name: "elm.text.3";
12798             clip_to: "disclip";
12799             type: TEXT;
12800             mouse_events: 0;
12801             scale: 1;
12802             description { state: "default" 0.0;
12803                min: 0 GENLIST_SIZE_40_INC;
12804                fixed: 0 1;
12805                rel1 {
12806                   relative: 1.0 0.0;
12807                   to_x: "elm.padding.icon2.right";
12808                   to_y: "elm.padding.bottom";
12809                }
12810                rel2 {
12811                   relative: 0.0 0.0;
12812                   to_x: "elm.text.4.left";
12813                   to_y: "elm.padding.bottom";
12814                }
12815                align: 0.0 1.0;
12816                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12817                text {
12818                   font: "SLP:style=Medium";
12819                   size: GENLIST_FONT_32_INC;
12820                   min: 0 1;
12821                   align: 0.0 0.5;
12822                   text_class: "slp_medium";
12823                }
12824             }
12825             description { state: "selected" 0.0;
12826                inherit: "default" 0.0;
12827                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
12828             }
12829             GENLIST_DESCRIPTION_FLIP_ENABLED
12830          }
12831       }
12832    }
12833
12834    // 2.2.3.8
12835    group { name: "elm/genlist/item/multiline/4text.6icon.4/default";
12836       alias: "elm/genlist/item_odd/multiline/4text.6icon.4/default";
12837       alias: "elm/genlist/item_compress/multiline/4text.6icon.4/default";
12838       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.4/default";
12839       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
12840
12841       parts {
12842          part { name: "elm.text.1";
12843             description { state: "default" 0.0;
12844                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
12845             }
12846          }
12847       }
12848    }
12849
12850    // 2.2.3.5
12851    group { name: "elm/genlist/item/multiline/4text.6icon.1/default";
12852       alias: "elm/genlist/item_odd/multiline/4text.6icon.1/default";
12853       alias: "elm/genlist/item_compress/multiline/4text.6icon.1/default";
12854       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.1/default";
12855       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
12856       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.icon.5";
12857
12858       parts {
12859          part { name: "elm.icon.5";
12860             clip_to: "disclip";
12861             type: SWALLOW;
12862             scale: 1;
12863             description { state: "default" 0.0;
12864                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12865                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12866                fixed: 1 1;
12867                rel1 {
12868                   relative: 0.0 1.0;
12869                   to_x: "elm.icon.4.left";
12870                   to_y: "elm.padding.top";
12871                }
12872                rel2 {
12873                   relative: 0.0 0.0;
12874                   to_x: "elm.icon.4.left";
12875                   to_y: "elm.text.2";
12876                }
12877                align: 1.0 0.5;
12878             }
12879             GENLIST_DESCRIPTION_FLIP_ENABLED
12880          }
12881          part { name: "elm.icon.5.left";
12882             clip_to: "disclip";
12883             type: RECT;
12884             scale: 1;
12885             description { state: "default" 0.0;
12886                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12887                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12888                fixed: 1 1;
12889                rel1 {
12890                   relative: 0.0 1.0;
12891                   to_x: "elm.icon.5";
12892                   to_y: "elm.padding.top";
12893                }
12894                rel2 {
12895                   relative: 0.0 0.0;
12896                   to_x: "elm.icon.5";
12897                   to_y: "elm.padding.bottom";
12898                }
12899                align: 1.0 0.0;
12900                visible: 0;
12901             }
12902             GENLIST_DESCRIPTION_FLIP_ENABLED
12903          }
12904          part { name: "elm.text.1.rect";
12905             description { state: "default" 0.0;
12906                rel2 {
12907                   to_x: "elm.icon.5.left";
12908                }
12909             }
12910          }
12911       }
12912    }
12913
12914    // 2.2.3.6
12915    group { name: "elm/genlist/item/multiline/4text.6icon.2/default";
12916       alias: "elm/genlist/item_odd/multiline/4text.6icon.2/default";
12917       alias: "elm/genlist/item_compress/multiline/4text.6icon.2/default";
12918       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.2/default";
12919       inherit: "elm/genlist/item/multiline/4text.6icon.1/default";
12920
12921       parts {
12922          part { name: "elm.text.1";
12923             description { state: "default" 0.0;
12924                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12925             }
12926          }
12927       }
12928    }
12929
12930    // 2.2.3.13
12931    group { name: "elm/genlist/item/multiline/3text.4icon.2/default";
12932       alias: "elm/genlist/item_odd/multiline/3text.4icon.2/default";
12933       alias: "elm/genlist/item_compress/multiline/3text.4icon.2/default";
12934       alias: "elm/genlist/item_compress_odd/multiline/3text.4icon.2/default";
12935       data.item: "stacking" "above";
12936       data.item: "selectraise" "on";
12937       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
12938       data.item: "contents" "elm.icon.1 elm.icon.4";
12939       data.item: "flips" "elm.flip.content";
12940       images {
12941          image: "00_list_bar_press_1x80.png" COMP;
12942       }
12943       parts {
12944          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
12945          GENLIST_PART_BG_IMAGE
12946          GENLIST_PART_BOTTOM_LINE
12947          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
12948          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
12949          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12950          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12951
12952          part { name: "elm.icon.1";
12953             clip_to: "disclip";
12954             type: SWALLOW;
12955             scale: 1;
12956             description { state: "default" 0.0;
12957                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12958                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12959                fixed: 1 1;
12960                rel1 {
12961                   relative: 1.0 1.0;
12962                   to_x: "elm.padding.left";
12963                   to_y: "elm.padding.top";
12964                }
12965                rel2 {
12966                   relative: 1.0 0.0;
12967                   to_x: "elm.padding.left";
12968                   to_y: "elm.padding.bottom";
12969                }
12970                align: 0.0 0.5;
12971             }
12972             GENLIST_DESCRIPTION_FLIP_ENABLED
12973          }
12974          part { name: "elm.padding.icon1.right";
12975             clip_to: "disclip";
12976             type: RECT;
12977             scale: 1;
12978             description { state: "default" 0.0;
12979                min: GENLIST_PADDING_16_INC 0;
12980                fixed: 1 0;
12981                rel1 {
12982                   relative: 1.0 0.0;
12983                   to_x: "elm.icon.1";
12984                }
12985                rel2.to_x: "elm.icon.1";
12986                align: 0.0 0.0;
12987                visible: 0;
12988             }
12989          }
12990          part { name: "elm.icon.4";
12991             clip_to: "disclip";
12992             type: SWALLOW;
12993             scale: 1;
12994             description { state: "default" 0.0;
12995                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12996                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12997                fixed: 1 1;
12998                rel1 {
12999                   relative: 0.0 1.0;
13000                   to_x: "elm.padding.right";
13001                   to_y: "elm.padding.top";
13002                }
13003                rel2 {
13004                   relative: 0.0 0.0;
13005                   to_x: "elm.padding.right";
13006                   to_y: "elm.text.2";
13007                }
13008                align: 1.0 0.5;
13009             }
13010             GENLIST_DESCRIPTION_FLIP_ENABLED
13011          }
13012          part { name: "elm.icon.4.left";
13013             clip_to: "disclip";
13014             type: RECT;
13015             scale: 1;
13016             description { state: "default" 0.0;
13017                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13018                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13019                fixed: 1 1;
13020                rel1 {
13021                   relative: 0.0 1.0;
13022                   to_x: "elm.icon.4";
13023                   to_y: "elm.padding.top";
13024                }
13025                rel2 {
13026                   relative: 0.0 0.0;
13027                   to_x: "elm.icon.4";
13028                   to_y: "elm.padding.bottom";
13029                }
13030                align: 1.0 0.0;
13031                visible: 0;
13032             }
13033             GENLIST_DESCRIPTION_FLIP_ENABLED
13034          }
13035          part { name: "elm.icon.2";
13036             clip_to: "disclip";
13037             type: SWALLOW;
13038             scale: 1;
13039             description { state: "default" 0.0;
13040                fixed: 1 1;
13041                min: GENLIST_SIZE_88_INC GENLIST_SIZE_74_INC;
13042                rel1 {
13043                   relative: 0.0 1.0;
13044                   to_x: "elm.padding.right";
13045                   to_y: "elm.text.1.bottom";
13046                }
13047                rel2 {
13048                   relative: 0.0 0.0;
13049                   to_x: "elm.padding.right";
13050                   to_y: "elm.padding.bottom";
13051                }
13052                align: 1.0 0.5;
13053             }
13054             GENLIST_DESCRIPTION_FLIP_ENABLED
13055          }
13056          part { name: "elm.padding.icon2.left";
13057             clip_to: "disclip";
13058             type: RECT;
13059             scale: 1;
13060             description { state: "default" 0.0;
13061                min: GENLIST_PADDING_16_INC 0;
13062                fixed: 1 0;
13063                rel1.to_x: "elm.icon.2";
13064                rel2 {
13065                   relative: 0.0 1.0;
13066                   to_x: "elm.icon.2";
13067                }
13068                align: 1.0 0.0;
13069                visible: 0;
13070             }
13071          }
13072          part { name: "elm.text.1.rect";
13073             clip_to: "disclip";
13074             type: RECT;
13075             scale: 1;
13076             description { state: "default" 0.0;
13077                min: 0 GENLIST_SIZE_60_INC;
13078                fixed: 0 1;
13079                rel1 {
13080                   relative: 1.0 1.0;
13081                   to_x: "elm.padding.left";
13082                   to_y: "elm.padding.top";
13083                }
13084                rel2 {
13085                   relative: 0.0 1.0;
13086                   to_x: "elm.icon.4.left";
13087                   to_y: "elm.padding.top";
13088                }
13089                align: 0.0 0.0;
13090                visible: 0;
13091             }
13092          }
13093          part { name: "elm.text.1";
13094             clip_to: "disclip";
13095             type: TEXT;
13096             mouse_events: 0;
13097             scale: 1;
13098             description { state: "default" 0.0;
13099                fixed: 1 1;
13100                rel1 {
13101                   relative: 1.0 1.0;
13102                   to_x: "elm.padding.icon1.right";
13103                   to_y: "elm.padding.top";
13104                }
13105                rel2.to: "elm.text.1.rect";
13106                align: 0.0 0.0;
13107                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
13108                text {
13109                   font: "SLP:style=Roman";
13110                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13111                   min: 0 1;
13112                   align: 0.0 0.5;
13113                   text_class: "list_item";
13114                }
13115             }
13116             description { state: "selected" 0.0;
13117                inherit: "default" 0.0;
13118                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
13119             }
13120             GENLIST_DESCRIPTION_FLIP_ENABLED
13121          }
13122          part { name: "elm.text.1.bottom";
13123             clip_to: "disclip";
13124             type: RECT;
13125             scale: 1;
13126             description { state: "default" 0.0;
13127                min: 0 GENLIST_SIZE_4_INC;
13128                fixed: 1 1;
13129                rel1 {
13130                   relative: 1.0 1.0;
13131                   to_x: "elm.padding.icon1.right";
13132                   to_y: "elm.text.1.rect";
13133                }
13134                rel2 {
13135                   relative: 0.0 1.0;
13136                   to_x: "elm.padding.right";
13137                   to_y: "elm.text.1.rect";
13138                }
13139                align: 0.0 1.0;
13140                visible: 0;
13141             }
13142             GENLIST_DESCRIPTION_FLIP_ENABLED
13143          }
13144          part { name: "elm.text.2";
13145             clip_to: "disclip";
13146             type: TEXT;
13147             mouse_events: 0;
13148             scale: 1;
13149             description { state: "default" 0.0;
13150                min: 0 GENLIST_SIZE_40_INC;
13151                fixed: 0 1;
13152                rel1 {
13153                   relative: 1.0 1.0;
13154                   to_x: "elm.padding.icon1.right";
13155                   to_y: "elm.text.1.bottom";
13156                }
13157                rel2 {
13158                   relative: 0.0 1.0;
13159                   to_x: "elm.padding.icon2.left";
13160                   to_y: "elm.text.1.bottom";
13161                }
13162                align: 0.0 0.0;
13163                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
13164                text {
13165                   font: "SLP:style=Medium";
13166                   size: GENLIST_FONT_32_INC;
13167                   min: 0 1;
13168                   align: 0.0 0.5;
13169                   text_class: "slp_medium";
13170                }
13171             }
13172             description { state: "selected" 0.0;
13173                inherit: "default" 0.0;
13174                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
13175             }
13176             GENLIST_DESCRIPTION_FLIP_ENABLED
13177          }
13178          part { name: "elm.text.3";
13179             clip_to: "disclip";
13180             type: TEXT;
13181             mouse_events: 0;
13182             scale: 1;
13183             description { state: "default" 0.0;
13184                min: 0 GENLIST_SIZE_40_INC;
13185                fixed: 0 1;
13186                rel1 {
13187                   relative: 1.0 0.0;
13188                   to_x: "elm.padding.icon1.right";
13189                   to_y: "elm.padding.bottom";
13190                }
13191                rel2 {
13192                   relative: 0.0 0.0;
13193                   to_x: "elm.padding.icon2.left";
13194                   to_y: "elm.padding.bottom";
13195                }
13196                align: 0.0 1.0;
13197                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
13198                text {
13199                   font: "SLP:style=Medium";
13200                   size: GENLIST_FONT_32_INC;
13201                   min: 0 1;
13202                   align: 0.0 0.5;
13203                   text_class: "slp_medium";
13204                }
13205             }
13206             description { state: "selected" 0.0;
13207                inherit: "default" 0.0;
13208                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
13209             }
13210             GENLIST_DESCRIPTION_FLIP_ENABLED
13211          }
13212
13213          GENLIST_PART_FLIP
13214          GENLIST_PART_DISCLIP
13215       }
13216       programs {
13217          // signal: elm,state,%s,active
13218          //   a "check" item named %s went active
13219          // signal: elm,state,%s,passive
13220          //   a "check" item named %s went passive
13221          // default is passive
13222          program { name: "go_active";
13223             signal: "elm,state,selected";
13224             source: "elm";
13225             action: STATE_SET "selected" 0.0;
13226             target: "bg_image";
13227             target: "elm.text.1";
13228             target: "elm.text.2";
13229             target: "elm.text.3";
13230          }
13231          program { name: "go_passive";
13232             signal: "elm,state,unselected";
13233             source: "elm";
13234             action: STATE_SET "default" 0.0;
13235             target: "bg_image";
13236             target: "elm.text.1";
13237             target: "elm.text.2";
13238             target: "elm.text.3";
13239             transition: LINEAR 0.1;
13240          }
13241          program { name: "go_disabled";
13242             signal: "elm,state,disabled";
13243             source: "elm";
13244             action: STATE_SET "disabled" 0.0;
13245             target: "disclip";
13246          }
13247          program { name: "go_enabled";
13248             signal: "elm,state,enabled";
13249             source: "elm";
13250             action: STATE_SET "default" 0.0;
13251             target: "disclip";
13252          }
13253       }
13254    }
13255
13256 // 2.2.4.1
13257    group { name: "elm/genlist/item/multiline/1title.2text/default";
13258       alias: "elm/genlist/item_odd/multiline/1title.2text/default";
13259       alias: "elm/genlist/item_compress/multiline/1title.2text/default";
13260       alias: "elm/genlist/item_compress_odd/multiline/1title.2text/default";
13261       data.item: "stacking" "above";
13262       data.item: "selectraise" "on";
13263       data.item: "texts" "elm.title elm.text.1 elm.text.2";
13264       parts {
13265          part { name: "base";
13266             type: RECT;
13267             repeat_events: 1;
13268             description { state: "default" 0.0;
13269                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13270             }
13271          }
13272          GENLIST_PART_BG_IMAGE
13273          GENLIST_PART_BOTTOM_LINE
13274          GENLIST_PART_PADDING_TOP( 0 )
13275          GENLIST_PART_PADDING_BOTTOM( 0 )
13276          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13277          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13278          part { name: "vertical_line";
13279             clip_to: "disclip";
13280             type: RECT;
13281             mouse_events: 0;
13282             description { state: "default" 0.0;
13283                min: 1 0;
13284                fixed: 1 0;
13285                rel1 {
13286                   relative: 1.0 0.0;
13287                   to_x: "elm.padding.title.right";
13288                }
13289                rel2.to_x: "elm.padding.title.right";
13290                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13291             }
13292          }
13293          part { name: "center_line";
13294             clip_to: "disclip";
13295             type: RECT;
13296             mouse_events: 0;
13297             description { state: "default" 0.0;
13298                min: 0 1;
13299                fixed: 0 1;
13300                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13301                rel1 {
13302                   relative: 1.0 0.5;
13303                   to_x: "vertical_line";
13304                }
13305                rel2.relative: 1.0 0.5;
13306                align: 0.5 1.0;
13307             }
13308          }
13309          part { name: "elm.title";
13310             clip_to: "disclip";
13311             type: TEXTBLOCK;
13312             mouse_events: 0;
13313             scale: 1;
13314             description { state: "default" 0.0;
13315                min: 224 0;
13316                fixed: 1 0;
13317                rel1 {
13318                   relative: 1.0 1.0;
13319                   to_x: "elm.padding.left";
13320                   to_y: "elm.padding.top";
13321                }
13322                rel2 {
13323                   relative: 1.0 0.0;
13324                   to_x: "elm.padding.left";
13325                   to_y: "elm.padding.bottom";
13326                }
13327                align: 0.0 0.5;
13328                text {
13329                   style: "genlist_style_multiline_text";
13330                   min: 0 1;
13331                   align: 0.0 0.5;
13332                }
13333             }
13334          }
13335          part { name: "elm.padding.title.right";
13336             clip_to: "disclip";
13337             type: RECT;
13338             mouse_events: 0;
13339             scale: 1;
13340             description { state: "default" 0.0;
13341                min: GENLIST_PADDING_16_INC 0;
13342                fixed: 1 0;
13343                rel1 {
13344                    relative: 1.0 0.0;
13345                    to_x: "elm.title";
13346                }
13347                rel2.to_x: "elm.title";
13348                visible: 0;
13349                align: 0.0 0.5;
13350             }
13351          }
13352          part { name: "elm.padding.text.left";
13353             clip_to: "disclip";
13354             type: RECT;
13355             mouse_events: 0;
13356             scale: 1;
13357             description { state: "default" 0.0;
13358                min: GENLIST_PADDING_16_INC 0;
13359                fixed: 1 0;
13360                rel1 {
13361                    relative: 1.0 0.0;
13362                    to_x: "vertical_line";
13363                }
13364                rel2.to_x: "vertical_line";
13365                visible: 0;
13366                align: 0.0 0.5;
13367             }
13368          }
13369          part { name: "elm.text.1";
13370             clip_to: "disclip";
13371             type: TEXT;
13372             mouse_events: 0;
13373             scale: 1;
13374             description { state: "default" 0.0;
13375                rel1 {
13376                   relative: 1.0 1.0;
13377                   to_x: "elm.padding.text.left";
13378                   to_y: "elm.padding.top";
13379                }
13380                rel2 {
13381                   relative: 0.0 0.0;
13382                   to_x: "elm.padding.right";
13383                   to_y: "center_line";
13384                }
13385                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13386                text {
13387                   font: "SLP:style=Roman";
13388                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13389                   min: 0 1;
13390                   align: 0.0 0.5;
13391                   text_class: "slp_roman";
13392                }
13393             }
13394          }
13395          part { name: "elm.text.2";
13396             clip_to: "disclip";
13397             type: TEXT;
13398             mouse_events: 0;
13399             scale: 1;
13400             description { state: "default" 0.0;
13401                rel1 {
13402                   relative: 1.0 1.0;
13403                   to_x: "elm.padding.text.left";
13404                   to_y: "center_line";
13405                }
13406                rel2 {
13407                   relative: 0.0 0.0;
13408                   to_x: "elm.padding.right";
13409                   to_y: "elm.padding.bottom";
13410                }
13411                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13412                text {
13413                   font: "SLP:style=Roman";
13414                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13415                   min: 0 1;
13416                   align: 0.0 0.5;
13417                   text_class: "slp_roman";
13418                }
13419             }
13420          }
13421          GENLIST_PART_DISCLIP
13422       }
13423       programs {
13424          // signal: elm,state,%s,active
13425          //   a "check" item named %s went active
13426          // signal: elm,state,%s,passive
13427          //   a "check" item named %s went passive
13428          // default is passive
13429          program { name: "go_active";
13430             signal: "elm,state,selected";
13431             source: "elm";
13432             action: STATE_SET "selected" 0.0;
13433             target: "bg_image";
13434             target: "elm.title";
13435             target: "elm.text.1";
13436             target: "elm.text.2";
13437             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13438          }
13439          program { name: "go_passive";
13440             signal: "elm,state,unselected";
13441             source: "elm";
13442             action: STATE_SET "default" 0.0;
13443             target: "bg_image";
13444             target: "elm.title";
13445             target: "elm.text.1";
13446             target: "elm.text.2";
13447             transition: LINEAR 0.1;
13448          }
13449          program { name: "go_disabled";
13450             signal: "elm,state,disabled";
13451             source: "elm";
13452             action: STATE_SET "disabled" 0.0;
13453             target: "disclip";
13454          }
13455          program { name: "go_enabled";
13456             signal: "elm,state,enabled";
13457             source: "elm";
13458             action: STATE_SET "default" 0.0;
13459             target: "disclip";
13460          }
13461          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13462       }
13463    }
13464
13465 // 3.4.5
13466    group { name: "elm/genlist/item_compress/multiline/1title.1text/default";
13467       alias: "elm/genlist/item_compress_odd/multiline/1title.1text/default";
13468       data.item: "stacking" "above";
13469       data.item: "selectraise" "on";
13470       data.item: "texts" "elm.title elm.text";
13471       parts {
13472          part { name: "base";
13473             type: RECT;
13474             repeat_events: 1;
13475             description { state: "default" 0.0;
13476                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13477             }
13478          }
13479          GENLIST_PART_BG_IMAGE
13480          GENLIST_PART_BOTTOM_LINE
13481          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13482          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13483          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13484          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13485          part { name: "elm.title";
13486             clip_to: "disclip";
13487             type: TEXT;
13488             mouse_events: 0;
13489             scale: 1;
13490             description { state: "default" 0.0;
13491                min: GENLIST_SIZE_195_INC 0;
13492                fixed: 1 0;
13493                rel1 {
13494                   relative: 1.0 0.0;
13495                   to_x: "elm.padding.left";
13496                }
13497                rel2 {
13498                   relative: 1.0 1.0;
13499                   to_x: "elm.padding.left";
13500                }
13501                align: 0.0 0.0;
13502                color: GENLIST_MULTILINE_TEXT_COLOR;
13503                text {
13504                   font: "SLP:style=Medium";
13505                   size: GENLIST_MULTILINE_TEXT_SIZE;
13506                   min: 0 1;
13507                   align: 0.0 0.5;
13508                   text_class: "slp_medium";
13509                }
13510             }
13511          }
13512          part { name: "elm.padding.title.right";
13513             clip_to: "disclip";
13514             type: RECT;
13515             mouse_events: 0;
13516             description { state: "default" 0.0;
13517                min: GENLIST_PADDING_16_INC 0;
13518                fixed: 1 0;
13519                rel1 {
13520                   relative: 1.0 0.0;
13521                   to_x: "elm.title";
13522                }
13523                rel2.to_x: "elm.title";
13524                align: 0.0 0.5;
13525                visible: 0;
13526             }
13527          }
13528          part { name: "vertical_line";
13529             clip_to: "disclip";
13530             type: RECT;
13531             mouse_events: 0;
13532             description { state: "default" 0.0;
13533                min: 1 0;
13534                fixed: 1 0;
13535                rel1 {
13536                   relative: 1.0 0.0;
13537                   to_x: "elm.padding.title.right";
13538                }
13539                rel2.to_x: "elm.padding.title.right";
13540                align: 0.0 0.5;
13541                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13542             }
13543          }
13544          part { name: "elm.padding.text.left";
13545             clip_to: "disclip";
13546             type: RECT;
13547             mouse_events: 0;
13548             description { state: "default" 0.0;
13549                min: GENLIST_PADDING_16_INC 0;
13550                fixed: 1 0;
13551                rel1 {
13552                   relative: 1.0 0.0;
13553                   to_x: "vertical_line";
13554                }
13555                rel2.to_x: "vertical_line";
13556                align: 0.0 0.5;
13557                visible: 0;
13558             }
13559          }
13560          part { name: "elm.text";
13561             clip_to: "disclip";
13562             type: TEXTBLOCK;
13563             mouse_events: 0;
13564             scale: 1;
13565             description { state: "default" 0.0;
13566                rel1 {
13567                   relative: 1.0 1.0;
13568                   to_x: "elm.padding.text.left";
13569                   to_y: "elm.padding.top";
13570                }
13571                rel2 {
13572                   relative: 0.0 0.0;
13573                   to_x: "elm.padding.right";
13574                   to_y: "elm.padding.bottom";
13575                }
13576                text {
13577                   style: "genlist_style_multiline_list_main_text_unread";
13578                   min: 0 1;
13579                   align: 0.0 0.5;
13580                   text_class: "list_item";
13581                }
13582             }
13583             description { state: "selected" 0.0;
13584                inherit: "default" 0.0;
13585                text.style: "genlist_style_multiline_list_main_text_focus";
13586             }
13587          }
13588          GENLIST_PART_DISCLIP
13589       }
13590       programs {
13591          // signal: elm,state,%s,active
13592          //   a "check" item named %s went active
13593          // signal: elm,state,%s,passive
13594          //   a "check" item named %s went passive
13595          // default is passive
13596          program { name: "go_active";
13597             signal: "elm,state,selected";
13598             source: "elm";
13599             action: STATE_SET "selected" 0.0;
13600             target: "bg_image";
13601             target: "elm.title";
13602             target: "elm.text";
13603             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13604          }
13605          program { name: "go_passive";
13606             signal: "elm,state,unselected";
13607             source: "elm";
13608             action: STATE_SET "default" 0.0;
13609             target: "bg_image";
13610             target: "elm.title";
13611             target: "elm.text";
13612             transition: LINEAR 0.1;
13613          }
13614          program { name: "go_disabled";
13615             signal: "elm,state,disabled";
13616             source: "elm";
13617             action: STATE_SET "disabled" 0.0;
13618             target: "disclip";
13619          }
13620          program { name: "go_enabled";
13621             signal: "elm,state,enabled";
13622             source: "elm";
13623             action: STATE_SET "default" 0.0;
13624             target: "disclip";
13625          }
13626          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13627       }
13628    }
13629
13630 // 3.4.6
13631    group { name: "elm/genlist/item_compress/multiline/2text.1icon/default";
13632       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon/default";
13633       data.item: "stacking" "above";
13634       data.item: "selectraise" "on";
13635       data.item: "texts" "elm.text.1 elm.text.2";
13636       data.item: "contents" "elm.icon";
13637       parts {
13638          part { name: "base";
13639             type: RECT;
13640             repeat_events: 1;
13641             description { state: "default" 0.0;
13642                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13643             }
13644          }
13645          GENLIST_PART_BG_IMAGE
13646          GENLIST_PART_BOTTOM_LINE
13647          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13648          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13649          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13650          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13651          part { name: "elm.text.1";
13652             clip_to: "disclip";
13653             type: TEXT;
13654             mouse_events: 0;
13655             scale: 1;
13656             description { state: "default" 0.0;
13657                min: 0 GENLIST_SIZE_48_INC;
13658                fixed: 0 1;
13659                rel1 {
13660                   relative: 1.0 1.0;
13661                   to_x: "elm.padding.left";
13662                   to_y: "elm.padding.top";
13663                }
13664                rel2 {
13665                   relative: 0.0 1.0;
13666                   to_x: "elm.padding.icon.left";
13667                   to_y: "elm.padding.top";
13668                }
13669                align: 0.0 0.0;
13670                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13671                text {
13672                   font: "SLP:style=Roman";
13673                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13674                   min: 0 1;
13675                   align: 0.0 0.5;
13676                   text_class: "list_item";
13677                }
13678             }
13679             description { state: "selected" 0.0;
13680                inherit: "default" 0.0;
13681                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
13682             }
13683          }
13684          part { name: "elm.icon";
13685             clip_to: "disclip";
13686             type: SWALLOW;
13687             scale: 1;
13688             description { state: "default" 0.0;
13689                fixed: 1 1;
13690                rel1 {
13691                   relative: 0.0 1.0;
13692                   to_x: "elm.padding.right";
13693                   to_y: "elm.padding.top";
13694                }
13695                rel2 {
13696                   relative: 0.0 0.0;
13697                   to_x: "elm.padding.right";
13698                   to_y: "elm.padding.bottom";
13699                }
13700                align: 1.0 0.5;
13701             }
13702             GENLIST_DESCRIPTION_FLIP_ENABLED
13703          }
13704          part { name: "elm.padding.icon.left";
13705             clip_to: "disclip";
13706             type: RECT;
13707             scale: 1;
13708             description { state: "default" 0.0;
13709                min: GENLIST_PADDING_16_INC 0;
13710                fixed: 1 0;
13711                rel1.to_x: "elm.icon";
13712                rel2 {
13713                   relative: 0.0 1.0;
13714                   to_x: "elm.icon";
13715                }
13716                align: 1.0 0.0;
13717                visible: 0;
13718             }
13719          }
13720          part { name: "elm.text.2";
13721             clip_to: "disclip";
13722             type: TEXTBLOCK;
13723             mouse_events: 0;
13724             scale: 1;
13725             description { state: "default" 0.0;
13726                rel1 {
13727                   relative: 1.0 1.0;
13728                   to_x: "elm.padding.left";
13729                   to_y: "elm.text.1";
13730                }
13731                rel2 {
13732                   relative: 0.0 0.0;
13733                   to_x: "elm.padding.icon.left";
13734                   to_y: "elm.padding.bottom";
13735                }
13736                text {
13737                   style: "genlist_style_flexible_text_sub";
13738                   min: 0 1;
13739                   align: 0.0 0.5;
13740                }
13741             }
13742          }
13743          GENLIST_PART_DISCLIP
13744       }
13745       programs {
13746          // signal: elm,state,%s,active
13747          //   a "check" item named %s went active
13748          // signal: elm,state,%s,passive
13749          //   a "check" item named %s went passive
13750          // default is passive
13751          program { name: "go_active";
13752             signal: "elm,state,selected";
13753             source: "elm";
13754             action: STATE_SET "selected" 0.0;
13755             target: "bg_image";
13756             target: "elm.text.1";
13757             target: "elm.text.2";
13758             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13759          }
13760          program { name: "go_passive";
13761             signal: "elm,state,unselected";
13762             source: "elm";
13763             action: STATE_SET "default" 0.0;
13764             target: "bg_image";
13765             target: "elm.text.1";
13766             target: "elm.text.2";
13767             transition: LINEAR 0.1;
13768          }
13769          program { name: "go_disabled";
13770             signal: "elm,state,disabled";
13771             source: "elm";
13772             action: STATE_SET "disabled" 0.0;
13773             target: "disclip";
13774          }
13775          program { name: "go_enabled";
13776             signal: "elm,state,enabled";
13777             source: "elm";
13778             action: STATE_SET "default" 0.0;
13779             target: "disclip";
13780          }
13781          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13782       }
13783    }
13784
13785 // 3.4.7
13786    group { name: "elm/genlist/item_compress/multiline/2text.1icon.2/default";
13787       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon.2/default";
13788       data.item: "stacking" "above";
13789       data.item: "selectraise" "on";
13790       data.item: "texts" "elm.text.1 elm.text.2";
13791       data.item: "contents" "elm.icon";
13792       parts {
13793          part { name: "base";
13794             type: RECT;
13795             repeat_events: 1;
13796             description { state: "default" 0.0;
13797                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13798             }
13799          }
13800          GENLIST_PART_BG_IMAGE
13801          GENLIST_PART_BOTTOM_LINE
13802          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13803          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13804          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13805          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13806          part { name: "elm.icon";
13807             clip_to: "disclip";
13808             type: SWALLOW;
13809             scale: 1;
13810             description { state: "default" 0.0;
13811                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13812                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13813                fixed: 1 1;
13814                rel1 {
13815                   relative: 1.0 1.0;
13816                   to_x: "elm.padding.left";
13817                   to_y: "elm.padding.top";
13818                }
13819                rel2 {
13820                   relative: 1.0 1.0;
13821                   to_x: "elm.padding.left";
13822                   to_y: "elm.text.1";
13823                }
13824                align: 0.0 0.5;
13825             }
13826             GENLIST_DESCRIPTION_FLIP_ENABLED
13827          }
13828          part { name: "elm.padding.icon.right";
13829             clip_to: "disclip";
13830             type: RECT;
13831             scale: 1;
13832             description { state: "default" 0.0;
13833                min: GENLIST_PADDING_16_INC 0;
13834                fixed: 1 0;
13835                rel1 {
13836                   relative: 1.0 0.0;
13837                   to_x: "elm.icon";
13838                }
13839                rel2.to_x: "elm.icon";
13840                align: 0.0 0.0;
13841                visible: 0;
13842             }
13843          }
13844          part { name: "elm.text.1";
13845             clip_to: "disclip";
13846             type: TEXT;
13847             mouse_events: 0;
13848             scale: 1;
13849             description { state: "default" 0.0;
13850                min: 0 GENLIST_SIZE_48_INC;
13851                fixed: 0 1;
13852                rel1 {
13853                   relative: 1.0 1.0;
13854                   to_x: "elm.padding.icon.right";
13855                   to_y: "elm.padding.top";
13856                }
13857                rel2 {
13858                   relative: 0.0 1.0;
13859                   to_x: "elm.padding.right";
13860                   to_y: "elm.padding.top";
13861                }
13862                align: 0.0 0.0;
13863                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13864                text {
13865                   font: "SLP:style=Roman";
13866                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13867                   min: 0 1;
13868                   align: 0.0 0.5;
13869                   text_class: "list_item";
13870                }
13871             }
13872             description { state: "selected" 0.0;
13873                inherit: "default" 0.0;
13874                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
13875             }
13876          }
13877          part { name: "elm.text.2";
13878             clip_to: "disclip";
13879             type: TEXTBLOCK;
13880             mouse_events: 0;
13881             scale: 1;
13882             description { state: "default" 0.0;
13883                rel1 {
13884                   relative: 1.0 1.0;
13885                   to_x: "elm.padding.left";
13886                   to_y: "elm.text.1";
13887                }
13888                rel2 {
13889                   relative: 0.0 0.0;
13890                   to_x: "elm.padding.right";
13891                   to_y: "elm.padding.bottom";
13892                }
13893                text {
13894                   style: "genlist_style_flexible_text_sub";
13895                   min: 0 1;
13896                   align: 0.0 0.5;
13897                }
13898             }
13899          }
13900          GENLIST_PART_DISCLIP
13901       }
13902       programs {
13903          // signal: elm,state,%s,active
13904          //   a "check" item named %s went active
13905          // signal: elm,state,%s,passive
13906          //   a "check" item named %s went passive
13907          // default is passive
13908          program { name: "go_active";
13909             signal: "elm,state,selected";
13910             source: "elm";
13911             action: STATE_SET "selected" 0.0;
13912             target: "bg_image";
13913             target: "elm.text.1";
13914             target: "elm.text.2";
13915             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13916          }
13917          program { name: "go_passive";
13918             signal: "elm,state,unselected";
13919             source: "elm";
13920             action: STATE_SET "default" 0.0;
13921             target: "bg_image";
13922             target: "elm.text.1";
13923             target: "elm.text.2";
13924             transition: LINEAR 0.1;
13925          }
13926          program { name: "go_disabled";
13927             signal: "elm,state,disabled";
13928             source: "elm";
13929             action: STATE_SET "disabled" 0.0;
13930             target: "disclip";
13931          }
13932          program { name: "go_enabled";
13933             signal: "elm,state,enabled";
13934             source: "elm";
13935             action: STATE_SET "default" 0.0;
13936             target: "disclip";
13937          }
13938          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13939       }
13940    }
13941
13942    group { name: "elm/genlist/item/readmessage/default";
13943       alias: "elm/genlist/item_odd/readmessage/default";
13944       alias: "elm/genlist/item_compress/readmessage/default";
13945       alias: "elm/genlist/item_compress_odd/readmessage/default";
13946
13947       data.item: "stacking" "above";
13948       data.item: "selectraise" "on";
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_LIST_BG_COLOR;
13956             }
13957          }
13958          part { name: "elm.icon";
13959             clip_to: "disclip";
13960             type: SWALLOW;
13961             scale: 1;
13962             description { state: "default" 0.0;
13963                //rel1 { relative: 0.0 1.0; to_y: "elm.rect.top.pad"; }
13964                rel2 {
13965                   relative: 0.76 0.0;
13966                   to_y: "elm.padding.bottom";
13967                }
13968             }
13969          }
13970          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
13971          GENLIST_PART_DISCLIP
13972       }
13973       programs {
13974          // signal: elm,state,%s,active
13975          //   a "check" item named %s went active
13976          // signal: elm,state,%s,passive
13977          //   a "check" item named %s went passive
13978          // default is passive
13979          /*program { name: "go_active";
13980             signal: "elm,state,selected";
13981             source: "elm";
13982             action: STATE_SET "selected" 0.0;
13983             target: "bg_image";
13984          }
13985          program { name: "go_passive";
13986             signal: "elm,state,unselected";
13987             source: "elm";
13988             action: STATE_SET "default" 0.0;
13989             target: "bg_image";
13990             transition: LINEAR 0.1;
13991          }*/
13992          program { name: "go_disabled";
13993             signal: "elm,state,disabled";
13994             source: "elm";
13995             action: STATE_SET "disabled" 0.0;
13996             target: "disclip";
13997          }
13998          program { name: "go_enabled";
13999             signal: "elm,state,enabled";
14000             source: "elm";
14001             action: STATE_SET "default" 0.0;
14002             target: "disclip";
14003          }
14004       }
14005    }
14006
14007    group { name: "elm/genlist/item/sentmessage/default";
14008       alias: "elm/genlist/item_odd/sentmessage/default";
14009       alias: "elm/genlist/item_compress/sentmessage/default";
14010       alias: "elm/genlist/item_compress_odd/sentmessage/default";
14011
14012       data.item: "stacking" "above";
14013       data.item: "selectraise" "on";
14014       data.item: "contents" "elm.icon";
14015       parts {
14016          part { name: "base";
14017             type: RECT;
14018             repeat_events: 1;
14019             description { state: "default" 0.0;
14020                color: GENLIST_PART_LIST_BG_COLOR;
14021             }
14022          }
14023          part { name: "elm.icon";
14024             clip_to: "disclip";
14025             type: SWALLOW;
14026             scale: 1;
14027             description { state: "default" 0.0;
14028                rel1.relative: 0.24 0.0; //to_y: "elm.rect.top.pad"; }
14029                rel2 {
14030                   relative: 1.0 0.0;
14031                   to_y: "elm.padding.bottom";
14032                }
14033             }
14034          }
14035          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
14036          GENLIST_PART_DISCLIP
14037       }
14038       programs {
14039          // signal: elm,state,%s,active
14040          //   a "check" item named %s went active
14041          // signal: elm,state,%s,passive
14042          //   a "check" item named %s went passive
14043          // default is passive
14044          /*program { name: "go_active";
14045             signal: "elm,state,selected";
14046             source: "elm";
14047             action: STATE_SET "selected" 0.0;
14048             target: "bg_image";
14049          }
14050          program { name: "go_passive";
14051             signal: "elm,state,unselected";
14052             source: "elm";
14053             action: STATE_SET "default" 0.0;
14054             target: "bg_image";
14055             transition: LINEAR 0.1;
14056          }*/
14057          program { name: "go_disabled";
14058             signal: "elm,state,disabled";
14059             source: "elm";
14060             action: STATE_SET "disabled" 0.0;
14061             target: "disclip";
14062          }
14063          program { name: "go_enabled";
14064             signal: "elm,state,enabled";
14065             source: "elm";
14066             action: STATE_SET "default" 0.0;
14067             target: "disclip";
14068          }
14069       }
14070    }
14071
14072 // 2.4.4.1
14073    group { name : "elm/genlist/item/dialogue/title/default";
14074       alias: "elm/genlist/item_odd/dialogue/title/default";
14075       alias: "elm/genlist/item_compress/dialogue/title/default";
14076       alias: "elm/genlist/item_compress_odd/dialogue/title/default";
14077       alias: "elm/layout/dialogue/title";
14078       alias: "elm/genlist/item/dialogue/grouptitle/default";
14079       alias: "elm/genlist/item_odd/dialogue/grouptitle/default";
14080       alias: "elm/genlist/item_compress/dialogue/grouptitle/default";
14081       alias: "elm/genlist/item_compress_odd/dialogue/grouptitle/default";
14082       alias: "elm/layout/dialogue/grouptitle";
14083
14084       data.item: "stacking" "above";
14085       data.item: "selectraise" "on";
14086       data.item: "texts" "elm.text";
14087       data.item: "contents" "elm.icon";
14088       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14089
14090       parts {
14091          // GENLIST_PART_BASE_EVENT_OFF
14092          GENLIST_PART_DISCLIP
14093          GENLIST_PART_DIALOGUE_BASE( GENLIST_DIALOGUE_GROUP_TITLE_HEIGHT )
14094          GENLIST_PART_PADDING_TOP( GENLIST_DIALOGUE_GROUP_TITLE_PADDING_TOP_SIZE )
14095          GENLIST_PART_PADDING_BOTTOM( GENLIST_DIALOGUE_GROUP_TITLE_PADDING_BOTTOM_SIZE )
14096          GENLIST_PART_PADDING_LEFT( 10 )
14097          GENLIST_PART_PADDING_RIGHT( 17 )
14098          GENLIST_PART_BOTTOM_LINE
14099          part { name: "elm.text";
14100             type: TEXT;
14101             scale: 1;
14102             description { state: "default" 0.0;
14103                align: 0.0 0.0;
14104                rel1 {
14105                   relative: 1.0 1.0;
14106                   to_x: "elm.padding.left";
14107                   to_y: "elm.padding.top";
14108                }
14109                rel2 {
14110                   relative: 0.0 0.0;
14111                   offset: 32 0;
14112                   to_x: "elm.icon";
14113                   to_y: "elm.padding.bottom";
14114                }
14115                color: GENLIST_DIALOGUE_GT_TEXT_COLOR;
14116                text {
14117                   font: "SLP:style=Medium";
14118                   size: GENLIST_FONT_28_INC;
14119                   min: 0 1;
14120                   align: 0.0 0.5;
14121                   text_class: "list_item";
14122                }
14123             }
14124          }
14125          part { name: "elm.icon";
14126             type: SWALLOW;
14127             scale: 1;
14128             description { state: "default" 0.0;
14129                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14130                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14131                fixed: 1 1;
14132                            align: 1.0 1.0;
14133                rel2 {
14134                   relative: 0.0 0.0;
14135                   to_x: "elm.padding.right";
14136                   to_y: "elm.padding.bottom";
14137                }
14138             }
14139          }
14140       }
14141    }
14142
14143 // Dialogue Group Separators
14144 // default separator
14145 // FIXME: style (dialogue) might be moved to last words (as-is default)
14146 // FIXME: seperator --> separator typo
14147 // FIXME: Check whether below separators are used now..
14148    group { name : "elm/genlist/item/dialogue/separator/default";
14149       alias: "elm/genlist/item_odd/dialogue/separator/default";
14150       alias: "elm/genlist/item_compress/dialogue/separator/default";
14151       alias: "elm/genlist/item_compress_odd/dialogue/separator/default";
14152           //FIXME: below name should be used??
14153       alias: "elm/genlist/item/dialogue/separator/21/with_line/default";
14154       alias: "elm/genlist/item_odd/dialogue/separator/21/with_line/default";
14155       alias: "elm/genlist/item_compress/dialogue/separator/21/with_line/default";
14156       alias: "elm/genlist/item_compress_odd/dialogue/separator/21/with_line/default";
14157       alias: "elm/layout/dialogue/separator/hd33/with_line";
14158
14159       data.item: "stacking" "above";
14160       data.item: "selectraise" "on";
14161       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14162
14163       parts {
14164          GENLIST_PART_DIALOGUE_BASE(GENLIST_DIALOGUE_SEPARATOR_DEFAULT_HEIGHT + 1)
14165          GENLIST_PART_BOTTOM_LINE
14166          GENLIST_PART_DISCLIP
14167       }
14168    }
14169
14170    group { name : "elm/genlist/item/dialogue/separator/end/default";
14171       alias: "elm/genlist/item_odd/dialogue/separator/end/default";
14172       alias: "elm/genlist/item_compress/dialogue/separator/end/default";
14173       alias: "elm/genlist/item_compress_odd/dialogue/separator/end/default";
14174       data.item: "stacking" "above";
14175       data.item: "selectraise" "on";
14176       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14177       parts {
14178          GENLIST_PART_DIALOGUE_BASE(GENLIST_DIALOGUE_SEPARATOR_DEFAULT_HEIGHT)
14179          GENLIST_PART_DISCLIP
14180       }
14181    }
14182
14183    group { name : "elm/genlist/item/dialogue/seperator.2/default";
14184       alias: "elm/genlist/item_odd/dialogue/seperator.2/default";
14185       alias: "elm/genlist/item_compress/dialogue/seperator.2/default";
14186       alias: "elm/genlist/item_compress_odd/dialogue/seperator.2/default";
14187       alias: "elm/genlist/item/dialogue/separator/11/with_line/default";
14188       alias: "elm/genlist/item_odd/dialogue/separator/11/with_line/default";
14189       alias: "elm/genlist/item_compress/dialogue/separator/11/with_line/default";
14190       alias: "elm/genlist/item_compress_odd/dialogue/separator/11/with_line/default";
14191       alias: "elm/layout/dialogue/separator/hd18/with_line";
14192
14193       data.item: "stacking" "above";
14194       data.item: "selectraise" "on";
14195       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14196
14197       parts {
14198          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_18_INC )
14199          GENLIST_PART_BOTTOM_LINE
14200          GENLIST_PART_DISCLIP
14201       }
14202    }
14203
14204    group { name : "elm/genlist/item/dialogue/seperator.3/default";
14205       alias: "elm/genlist/item_odd/dialogue/seperator.3/default";
14206       alias: "elm/genlist/item_compress/dialogue/seperator.3/default";
14207       alias: "elm/genlist/item_compress_odd/dialogue/seperator.3/default";
14208       alias: "elm/genlist/item/dialogue/separator/20/default";
14209       alias: "elm/genlist/item_odd/dialogue/separator/20/default";
14210       alias: "elm/genlist/item_compress/dialogue/separator/20/default";
14211       alias: "elm/genlist/item_compress_odd/dialogue/separator/20/default";
14212       alias: "elm/layout/dialogue/separator/hd32";
14213
14214       data.item: "stacking" "above";
14215       data.item: "selectraise" "on";
14216       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14217
14218       parts {
14219          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_32_INC )
14220          GENLIST_PART_DISCLIP
14221       }
14222    }
14223
14224    group { name : "elm/genlist/item/dialogue/seperator.4/default";
14225       alias: "elm/genlist/item_odd/dialogue/seperator.4/default";
14226       alias: "elm/genlist/item_compress/dialogue/seperator.4/default";
14227       alias: "elm/genlist/item_compress_odd/dialogue/seperator.4/default";
14228       alias: "elm/genlist/item/dialogue/separator/10/default";
14229       alias: "elm/genlist/item_odd/dialogue/separator/10/default";
14230       alias: "elm/genlist/item_compress/dialogue/separator/10/default";
14231       alias: "elm/genlist/item_compress_odd/dialogue/separator/10/default";
14232       alias: "elm/layout/dialogue/separator/hd16";
14233
14234       data.item: "stacking" "above";
14235       data.item: "selectraise" "on";
14236       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14237
14238       parts {
14239          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_16_INC )
14240          GENLIST_PART_DISCLIP
14241       }
14242    }
14243
14244    group { name : "elm/genlist/item/dialogue/seperator.5/default";
14245       alias: "elm/genlist/item_odd/dialogue/seperator.5/default";
14246       alias: "elm/genlist/item_compress/dialogue/seperator.5/default";
14247       alias: "elm/genlist/item_compress_odd/dialogue/seperator.5/default";
14248       alias: "elm/genlist/item/dialogue/separator/1/with_line/default";
14249       alias: "elm/genlist/item_odd/dialogue/separator/1/with_line/default";
14250       alias: "elm/genlist/item_compress/dialogue/separator/1/with_line/default";
14251       alias: "elm/genlist/item_compress_odd/dialogue/separator/1/with_line/default";
14252       alias: "elm/layout/dialogue/separator/hd1";
14253
14254       data.item: "stacking" "above";
14255       data.item: "selectraise" "on";
14256       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14257
14258       parts {
14259          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_1_INC )
14260          GENLIST_PART_BOTTOM_LINE
14261          GENLIST_PART_DISCLIP
14262       }
14263    }
14264
14265 // 4.1.1
14266    group { name: "elm/genlist/item/dialogue/1text/default";
14267       alias: "elm/genlist/item_odd/dialogue/1text/default";
14268       alias: "elm/genlist/item_compress/dialogue/1text/default";
14269       alias: "elm/genlist/item_compress_odd/dialogue/1text/default";
14270       alias: "elm/genlist/item/dialogue.1text/default";
14271       alias: "elm/genlist/item_odd/dialogue.1text/default";
14272       alias: "elm/genlist/item_compress/dialogue.1text/default";
14273       alias: "elm/genlist/item_compress_odd/dialogue.1text/default";
14274       alias: "elm/layout/dialogue/1text";
14275       data.item: "stacking" "above";
14276       data.item: "selectraise" "on";
14277       data.item: "texts" "elm.text";
14278       data.item: "flips" "elm.flip.content";
14279       parts {
14280          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14281          GENLIST_PART_DIALOGUE_BG_IMAGE
14282          GENLIST_PART_BOTTOM_LINE
14283          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14284          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14285          GENLIST_PART_DIALOGUE_ITEM
14286          GENLIST_PART_DIALOGUE_RIGHT_LINE
14287          part { name: "elm.text";
14288             clip_to: "disclip";
14289             type: TEXT;
14290             mouse_events: 0;
14291             scale: 1;
14292             description { state: "default" 0.0;
14293                rel1 {
14294                   relative: 1.0  0.0;
14295                   to_x: "elm.padding.left";
14296                }
14297                rel2 {
14298                   relative: 0.0 1.0;
14299                   to_x: "elm.padding.right";
14300                }
14301                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14302                text {
14303                   font: "SLP:style=Roman";
14304                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14305                   min: 0 1;
14306                   align: 0.0 0.5;
14307                   text_class: "list_item";
14308                }
14309             }
14310             description { state: "selected" 0.0;
14311                inherit: "default" 0.0;
14312                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14313             }
14314             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14315             GENLIST_DESCRIPTION_FLIP_ENABLED
14316          }
14317          GENLIST_PART_FLIP
14318          GENLIST_PART_DISCLIP
14319       }
14320       programs {
14321          // signal: elm,state,%s,active
14322          //   a "check" item named %s went active
14323          // signal: elm,state,%s,passive
14324          //   a "check" item named %s went passive
14325          // default is passive
14326          program { name: "go_active";
14327             signal: "elm,state,selected";
14328             source: "elm";
14329             action: STATE_SET "selected" 0.0;
14330             target: "bg_image";
14331             target: "elm.text";
14332             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14333          }
14334          program { name: "go_passive";
14335             signal: "elm,state,unselected";
14336             source: "elm";
14337             action: STATE_SET "default" 0.0;
14338             target: "bg_image";
14339             target: "elm.text";
14340             transition: LINEAR 0.1;
14341          }
14342          program { name: "go_disabled";
14343             signal: "elm,state,disabled";
14344             source: "elm";
14345             action: STATE_SET "disabled" 0.0;
14346             target: "disclip";
14347          }
14348          program { name: "go_enabled";
14349             signal: "elm,state,enabled";
14350             source: "elm";
14351             action: STATE_SET "default" 0.0;
14352             target: "disclip";
14353          }
14354          GENLIST_PROGRAM_FLIP_1TEXT
14355          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14356       }
14357    }
14358
14359 // 4.1.2
14360    group { name: "elm/genlist/item/dialogue/1text.1icon/default";
14361       alias: "elm/genlist/item_odd/dialogue/1text.1icon/default";
14362       alias: "elm/genlist/item_compress/dialogue/1text.1icon/default";
14363       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon/default";
14364       alias: "elm/layout/dialogue/1text.1icon";
14365       data.item: "stacking" "above";
14366       data.item: "selectraise" "on";
14367       data.item: "texts" "elm.text";
14368       data.item: "contents" "elm.icon";
14369       data.item: "flips" "elm.flip.content";
14370       parts {
14371          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14372          GENLIST_PART_DIALOGUE_BG_IMAGE
14373          GENLIST_PART_BOTTOM_LINE
14374          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14375          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14376          GENLIST_PART_DIALOGUE_ITEM
14377          GENLIST_PART_DIALOGUE_RIGHT_LINE
14378          part { name: "elm.icon";
14379             clip_to: "disclip";
14380             type: SWALLOW;
14381             scale: 1;
14382             description { state: "default" 0.0;
14383                fixed: 1 1;
14384                rel1.to_x: "elm.padding.right";
14385                rel2 {
14386                   relative: 0.0 1.0;
14387                   to_x: "elm.padding.right";
14388                }
14389                align: 1.0 0.5;
14390             }
14391             GENLIST_DESCRIPTION_FLIP_ENABLED
14392          }
14393          part { name: "elm.padding.icon.left";
14394             clip_to: "disclip";
14395             type: RECT;
14396             scale: 1;
14397             description { state: "default" 0.0;
14398                min: GENLIST_PADDING_16_INC 0;
14399                fixed: 1 0;
14400                rel1.to_x: "elm.icon";
14401                rel2 {
14402                   relative: 0.0 1.0;
14403                   to_x: "elm.icon";
14404                }
14405                align: 1.0 0.0;
14406                visible: 0;
14407             }
14408          }
14409          part { name: "elm.text";
14410             clip_to: "disclip";
14411             type: TEXT;
14412             mouse_events: 0;
14413             scale: 1;
14414             description { state: "default" 0.0;
14415                rel1 {
14416                   relative: 1.0 0.0;
14417                   to_x: "elm.padding.left";
14418                }
14419                rel2 {
14420                   relative: 0.0 1.0;
14421                   to_x: "elm.padding.icon.left";
14422                }
14423                align: 0.0 0.0;
14424                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14425                text {
14426                   font: "SLP:style=Roman";
14427                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14428                   min: 0 1;
14429                   align: 0.0 0.5;
14430                   text_class: "list_item";
14431                }
14432             }
14433             description { state: "selected" 0.0;
14434                inherit: "default" 0.0;
14435                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14436             }
14437             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14438             GENLIST_DESCRIPTION_FLIP_ENABLED
14439          }
14440          GENLIST_PART_FLIP
14441          GENLIST_PART_DISCLIP
14442       }
14443       programs {
14444          program { name: "go_active";
14445             signal: "elm,state,selected";
14446             source: "elm";
14447             action: STATE_SET "selected" 0.0;
14448             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
14449             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14450          }
14451          program { name: "go_passive";
14452             signal: "elm,state,unselected";
14453             source: "elm";
14454             action: STATE_SET "default" 0.0;
14455             target: "bg_image";
14456             target: "elm.text";
14457             transition: LINEAR 0.1;
14458          }
14459          program { name: "go_disabled";
14460             signal: "elm,state,disabled";
14461             source: "elm";
14462             action: STATE_SET "disabled" 0.0;
14463             target: "disclip";
14464          }
14465          program { name: "go_enabled";
14466             signal: "elm,state,enabled";
14467             source: "elm";
14468             action: STATE_SET "default" 0.0;
14469             target: "disclip";
14470          }
14471          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
14472          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14473       }
14474    }
14475
14476 // 4.1.3
14477    group { name: "elm/genlist/item/dialogue/1text.1icon.2/default";
14478       alias: "elm/genlist/item_odd/dialogue/1text.1icon.2/default";
14479       alias: "elm/genlist/item_compress/dialogue/1text.1icon.2/default";
14480       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.2/default";
14481       alias: "elm/layout/dialogue/1text.1icon.2";
14482       data.item: "stacking" "above";
14483       data.item: "selectraise" "on";
14484       data.item: "texts" "elm.text";
14485       data.item: "contents" "elm.icon";
14486       data.item: "flips" "elm.flip.content";
14487       parts {
14488          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14489          GENLIST_PART_DIALOGUE_BG_IMAGE
14490          GENLIST_PART_BOTTOM_LINE
14491          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14492          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14493          GENLIST_PART_DIALOGUE_ITEM
14494          GENLIST_PART_DIALOGUE_RIGHT_LINE
14495          part { name: "elm.icon";
14496             clip_to: "disclip";
14497             type: SWALLOW;
14498             scale: 1;
14499             description { state: "default" 0.0;
14500                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14501                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14502                fixed: 1 1;
14503                rel1 {
14504                   relative: 1.0 0.0;
14505                   to_x: "elm.padding.left";
14506                }
14507                rel2 {
14508                   relative: 1.0 1.0;
14509                   to_x: "elm.padding.left";
14510                }
14511                align: 0.0 0.5;
14512             }
14513             GENLIST_DESCRIPTION_FLIP_ENABLED
14514          }
14515          part { name: "elm.padding.icon.right";
14516             clip_to: "disclip";
14517             type: RECT;
14518             scale: 1;
14519             description { state: "default" 0.0;
14520                min: GENLIST_PADDING_16_INC 0;
14521                fixed: 1 0;
14522                rel1 {
14523                   relative: 1.0 0.0;
14524                   to_x: "elm.icon";
14525                }
14526                rel2.to_x: "elm.icon";
14527                align: 0.0 0.0;
14528                visible: 0;
14529             }
14530          }
14531          part { name: "elm.text";
14532             clip_to: "disclip";
14533             type: TEXT;
14534             mouse_events: 0;
14535             scale: 1;
14536             description { state: "default" 0.0;
14537                rel1 {
14538                   relative: 1.0 0.0;
14539                   to_x: "elm.padding.icon.right";
14540                }
14541                rel2 {
14542                   relative: 0.0 1.0;
14543                   to_x: "elm.padding.right";
14544                }
14545                align: 0.0 0.0;
14546                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14547                text {
14548                   font: "SLP:style=Roman";
14549                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14550                   min: 0 1;
14551                   align: 0.0 0.5;
14552                   text_class: "list_item";
14553                }
14554             }
14555             description { state: "selected" 0.0;
14556                inherit: "default" 0.0;
14557                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14558             }
14559             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14560             GENLIST_DESCRIPTION_FLIP_ENABLED
14561          }
14562          GENLIST_PART_FLIP
14563          GENLIST_PART_DISCLIP
14564       }
14565       programs {
14566          program { name: "go_active";
14567             signal: "elm,state,selected";
14568             source: "elm";
14569             action: STATE_SET "selected" 0.0;
14570             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
14571             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14572          }
14573          program { name: "go_passive";
14574             signal: "elm,state,unselected";
14575             source: "elm";
14576             action: STATE_SET "default" 0.0;
14577             target: "bg_image";
14578             target: "elm.text";
14579             transition: LINEAR 0.1;
14580          }
14581          program { name: "go_disabled";
14582             signal: "elm,state,disabled";
14583             source: "elm";
14584             action: STATE_SET "disabled" 0.0;
14585             target: "disclip";
14586          }
14587          program { name: "go_enabled";
14588             signal: "elm,state,enabled";
14589             source: "elm";
14590             action: STATE_SET "default" 0.0;
14591             target: "disclip";
14592          }
14593          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
14594          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14595       }
14596    }
14597
14598 // 4.1.4
14599    group { name: "elm/genlist/item/dialogue/1text.2icon/default";
14600       alias: "elm/genlist/item_odd/dialogue/1text.2icon/default";
14601       alias: "elm/genlist/item_compress/dialogue/1text.2icon/default";
14602       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon/default";
14603       alias: "elm/layout/dialogue/1text.2icon";
14604       data.item: "stacking" "above";
14605       data.item: "selectraise" "on";
14606       data.item: "texts" "elm.text";
14607       data.item: "contents" "elm.icon.1 elm.icon.2";
14608       data.item: "flips" "elm.flip.content";
14609       parts {
14610          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14611          GENLIST_PART_DIALOGUE_BG_IMAGE
14612          GENLIST_PART_BOTTOM_LINE
14613          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14614          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14615          GENLIST_PART_DIALOGUE_ITEM
14616          GENLIST_PART_DIALOGUE_RIGHT_LINE
14617          part { name: "elm.icon.1";
14618             clip_to: "disclip";
14619             type: SWALLOW;
14620             scale: 1;
14621             description { state: "default" 0.0;
14622                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14623                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14624                fixed: 1 1;
14625                rel1 {
14626                   relative: 1.0 0.0;
14627                   to_x: "elm.padding.left";
14628                }
14629                rel2 {
14630                   relative: 1.0 1.0;
14631                   to_x: "elm.padding.left";
14632                }
14633                align: 0.0 0.5;
14634             }
14635             GENLIST_DESCRIPTION_FLIP_ENABLED
14636          }
14637          part { name: "elm.padding.icon.right";
14638             clip_to: "disclip";
14639             type: RECT;
14640             scale: 1;
14641             description { state: "default" 0.0;
14642                min: GENLIST_PADDING_16_INC 0;
14643                fixed: 1 0;
14644                rel1 {
14645                   relative: 1.0 0.0;
14646                   to_x: "elm.icon.1";
14647                }
14648                rel2.to_x: "elm.icon.1";
14649                align: 0.0 0.0;
14650                visible: 0;
14651             }
14652          }
14653          part { name: "elm.icon.2";
14654             clip_to: "disclip";
14655             type: SWALLOW;
14656             scale: 1;
14657             description { state: "default" 0.0;
14658                fixed: 1 1;
14659                rel1.to_x: "elm.padding.right";
14660                rel2 {
14661                   relative: 0.0 1.0;
14662                   to_x: "elm.padding.right";
14663                }
14664                align: 1.0 0.5;
14665             }
14666             GENLIST_DESCRIPTION_FLIP_ENABLED
14667          }
14668          part { name: "elm.padding.icon.left";
14669             clip_to: "disclip";
14670             type: RECT;
14671             scale: 1;
14672             description { state: "default" 0.0;
14673                min: GENLIST_PADDING_16_INC 0;
14674                fixed: 1 0;
14675                rel1.to_x: "elm.icon.2";
14676                rel2 {
14677                   relative: 0.0 1.0;
14678                   to_x: "elm.icon.2";
14679                }
14680                align: 1.0 0.0;
14681                visible: 0;
14682             }
14683          }
14684          part { name: "elm.text";
14685             clip_to: "disclip";
14686             type: TEXT;
14687             mouse_events: 0;
14688             scale: 1;
14689             description { state: "default" 0.0;
14690                rel1 {
14691                   relative: 1.0 0.0;
14692                   to_x: "elm.padding.icon.right";
14693                }
14694                rel2 {
14695                   relative: 0.0 1.0;
14696                   to_x: "elm.padding.icon.left";
14697                }
14698                align: 0.0 0.0;
14699                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14700                text {
14701                   font: "SLP:style=Roman";
14702                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14703                   min: 0 1;
14704                   align: 0.0 0.5;
14705                   text_class: "list_item";
14706                }
14707             }
14708             description { state: "selected" 0.0;
14709                inherit: "default" 0.0;
14710                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14711             }
14712             GENLIST_DESCRIPTION_FLIP_ENABLED
14713          }
14714          GENLIST_PART_FLIP
14715          GENLIST_PART_DISCLIP
14716       }
14717       programs {
14718          program { name: "go_active";
14719             signal: "elm,state,selected";
14720             source: "elm";
14721             action: STATE_SET "selected" 0.0;
14722             target: "bg_image";
14723             target: "elm.text";
14724             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14725          }
14726          program { name: "go_passive";
14727             signal: "elm,state,unselected";
14728             source: "elm";
14729             action: STATE_SET "default" 0.0;
14730             target: "bg_image";
14731             target: "elm.text";
14732             transition: LINEAR 0.1;
14733          }
14734          program { name: "go_disabled";
14735             signal: "elm,state,disabled";
14736             source: "elm";
14737             action: STATE_SET "disabled" 0.0;
14738             target: "disclip";
14739          }
14740          program { name: "go_enabled";
14741             signal: "elm,state,enabled";
14742             source: "elm";
14743             action: STATE_SET "default" 0.0;
14744             target: "disclip";
14745          }
14746          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
14747          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14748       }
14749    }
14750
14751 // 4.1.5
14752    group { name: "elm/genlist/item/dialogue/2text.1icon/default";
14753       alias: "elm/genlist/item_odd/dialogue/2text.1icon/default";
14754       alias: "elm/genlist/item_compress/dialogue/2text.1icon/default";
14755       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon/default";
14756       alias: "elm/layout/dialogue/2text.1icon";
14757       data.item: "stacking" "above";
14758       data.item: "selectraise" "on";
14759       data.item: "texts" "elm.text.1 elm.text.2";
14760       data.item: "contents" "elm.icon";
14761       data.item: "flips" "elm.flip.content";
14762       parts {
14763          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14764          GENLIST_PART_DIALOGUE_BG_IMAGE
14765          GENLIST_PART_BOTTOM_LINE
14766          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14767          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14768          GENLIST_PART_DIALOGUE_ITEM
14769          GENLIST_PART_DIALOGUE_RIGHT_LINE
14770          part { name: "elm.icon";
14771             clip_to: "disclip";
14772             type: SWALLOW;
14773             scale: 1;
14774             description { state: "default" 0.0;
14775                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14776                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14777                fixed: 1 1;
14778                rel1 {
14779                   relative: 1.0 0.0;
14780                   to_x: "elm.padding.left";
14781                }
14782                rel2 {
14783                   relative: 1.0 1.0;
14784                   to_x: "elm.padding.left";
14785                }
14786                align: 0.0 0.5;
14787             }
14788             GENLIST_DESCRIPTION_FLIP_ENABLED
14789          }
14790          part { name: "elm.padding.icon.right";
14791             clip_to: "disclip";
14792             type: RECT;
14793             scale: 1;
14794             description { state: "default" 0.0;
14795                min: GENLIST_PADDING_16_INC 0;
14796                fixed: 1 0;
14797                rel1 {
14798                   relative: 1.0 0.0;
14799                   to_x: "elm.icon";
14800                }
14801                rel2.to_x: "elm.icon";
14802                align: 0.0 0.0;
14803                visible: 0;
14804             }
14805          }
14806          part { name: "elm.text.2";
14807             clip_to: "disclip";
14808             type: TEXT;
14809             mouse_events: 0;
14810             scale: 1;
14811             description { state: "default" 0.0;
14812                min: GENLIST_SIZE_133_INC 0;
14813                fixed: 1 0;
14814                rel1.to_x: "elm.padding.right";
14815                rel2 {
14816                   relative: 0.0 1.0;
14817                   to_x: "elm.padding.right";
14818                }
14819                align: 1.0 0.5;
14820                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;;
14821                text {
14822                   font: "SLP:style=Medium";
14823                   size: GENLIST_FONT_32_INC;
14824                   min: 0 1;
14825                   align: 1.0 0.5;
14826                   text_class: "slp_medium";
14827                }
14828             }
14829             description { state: "selected" 0.0;
14830                inherit: "default" 0.0;
14831                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14832             }
14833             GENLIST_DESCRIPTION_FLIP_ENABLED
14834          }
14835          part { name: "elm.padding.text2.left";
14836             type: RECT;
14837             mouse_events: 0;
14838             scale: 1;
14839             description { state: "default" 0.0;
14840                min: GENLIST_ICON_SMALL_SIZE 0;
14841                fixed: 1 0;
14842                rel1.to_x: "elm.text.2";
14843                rel2 {
14844                   relative: 0.0 1.0;
14845                   to_x: "elm.text.2";
14846                }
14847                visible: 0;
14848                align: 1.0 0.5;
14849             }
14850          }
14851          part { name: "elm.text.1";
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.text2.left";
14864                }
14865                align: 0.0 0.0;
14866                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14867                text {
14868                   font: "SLP:style=Roman";
14869                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
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_LIST_MAIN_TEXT_FOCUS_COLOR;
14878             }
14879             GENLIST_DESCRIPTION_FLIP_ENABLED
14880          }
14881          GENLIST_PART_FLIP
14882          GENLIST_PART_DISCLIP
14883       }
14884       programs {
14885          program { name: "go_active";
14886             signal: "elm,state,selected";
14887             source: "elm";
14888             action: STATE_SET "selected" 0.0;
14889             target: "bg_image";
14890             target: "elm.text.1";
14891             target: "elm.text.2";
14892             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14893          }
14894          program { name: "go_passive";
14895             signal: "elm,state,unselected";
14896             source: "elm";
14897             action: STATE_SET "default" 0.0;
14898             target: "bg_image";
14899             target: "elm.text.1";
14900             target: "elm.text.2";
14901             transition: LINEAR 0.1;
14902          }
14903          program { name: "go_disabled";
14904             signal: "elm,state,disabled";
14905             source: "elm";
14906             action: STATE_SET "disabled" 0.0;
14907             target: "disclip";
14908          }
14909          program { name: "go_enabled";
14910             signal: "elm,state,enabled";
14911             source: "elm";
14912             action: STATE_SET "default" 0.0;
14913             target: "disclip";
14914          }
14915          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
14916          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14917       }
14918    }
14919 //
14920 // 4.1.6 textblock for message
14921    group { name: "elm/genlist/item/dialogue/1text.1icon.6/default";
14922       alias: "elm/genlist/item_odd/dialogue/1text.1icon.6/default";
14923       alias: "elm/genlist/item_compress/dialogue/1text.1icon.6/default";
14924       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.6/default";
14925       alias: "elm/layout/dialogue/1text.1icon.6";
14926       data.item: "stacking" "above";
14927       data.item: "selectraise" "on";
14928       data.item: "texts" "elm.text";
14929       data.item: "contents" "elm.icon";
14930       data.item: "flips" "elm.flip.content";
14931       parts {
14932          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14933          GENLIST_PART_DIALOGUE_BG_IMAGE
14934          GENLIST_PART_BOTTOM_LINE
14935          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14936          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14937          GENLIST_PART_DIALOGUE_ITEM
14938          GENLIST_PART_DIALOGUE_RIGHT_LINE
14939          part { name: "elm.icon";
14940             clip_to: "disclip";
14941             type: SWALLOW;
14942             scale: 1;
14943             description { state: "default" 0.0;
14944                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
14945                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
14946                fixed: 1 1;
14947                rel1 {
14948                   relative: 1.0 0.0;
14949                   to_x: "elm.padding.left";
14950                }
14951                rel2 {
14952                   relative: 1.0 1.0;
14953                   to_x: "elm.padding.left";
14954                }
14955                align: 0.0 0.5;
14956             }
14957             GENLIST_DESCRIPTION_FLIP_ENABLED
14958          }
14959          part { name: "elm.padding.icon.right";
14960             type: RECT;
14961             scale: 1;
14962             description { state: "default" 0.0;
14963                min: GENLIST_PADDING_16_INC 0;
14964                fixed: 1 0;
14965                rel1 {
14966                   relative: 1.0 0.0;
14967                   to_x: "elm.icon";
14968                }
14969                rel2.to_x: "elm.icon";
14970                align: 0.0 0.0;
14971                visible: 0;
14972             }
14973          }
14974          part { name: "elm.text";
14975             clip_to: "disclip";
14976             type: TEXTBLOCK;
14977             mouse_events: 0;
14978             scale: 1;
14979             description { state: "default" 0.0;
14980                rel1 {
14981                   relative: 1.0 0.0;
14982                   to_x: "elm.padding.icon.right";
14983                }
14984                rel2 {
14985                   relative: 0.0 1.0;
14986                   to_x: "elm.padding.right";
14987                }
14988                align: 0.0 0.5;
14989                text {
14990                   style: "genlist_style_list_main_text_unread";
14991                   min: 0 1;
14992                   align: 0.0 0.5;
14993                }
14994             }
14995             description { state: "selected" 0.0;
14996                inherit: "default" 0.0;
14997                text.style: "genlist_style_list_main_text_focus";
14998             }
14999             GENLIST_DESCRIPTION_FLIP_ENABLED
15000          }
15001          GENLIST_PART_FLIP
15002          GENLIST_PART_DISCLIP
15003       }
15004       programs {
15005          program { name: "go_active";
15006             signal: "elm,state,selected";
15007             source: "elm";
15008             action: STATE_SET "selected" 0.0;
15009             target: "bg_image";
15010             target: "elm.text";
15011             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15012          }
15013          program { name: "go_passive";
15014             signal: "elm,state,unselected";
15015             source: "elm";
15016             action: STATE_SET "default" 0.0;
15017             target: "bg_image";
15018             target: "elm.text";
15019             transition: LINEAR 0.1;
15020          }
15021          program { name: "go_disabled";
15022             signal: "elm,state,disabled";
15023             source: "elm";
15024             action: STATE_SET "disabled" 0.0;
15025             target: "disclip";
15026          }
15027          program { name: "go_enabled";
15028             signal: "elm,state,enabled";
15029             source: "elm";
15030             action: STATE_SET "default" 0.0;
15031             target: "disclip";
15032          }
15033          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15034          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15035       }
15036    }
15037
15038 // 4.1.17
15039    group { name: "elm/genlist/item/dialogue/1text.1icon.4/default";
15040       alias: "elm/genlist/item_odd/dialogue/1text.1icon.4/default";
15041       alias: "elm/genlist/item_compress/dialogue/1text.1icon.4/default";
15042       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.4/default";
15043       alias: "elm/layout/dialogue/1text.1icon.4";
15044       data.item: "stacking" "above";
15045       data.item: "selectraise" "on";
15046       data.item: "texts" "elm.text";
15047       data.item: "contents" "elm.icon";
15048       data.item: "flips" "elm.flip.content";
15049       parts {
15050          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15051          GENLIST_PART_DIALOGUE_BG_IMAGE
15052          GENLIST_PART_BOTTOM_LINE
15053          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15054          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15055          GENLIST_PART_DIALOGUE_ITEM
15056          GENLIST_PART_DIALOGUE_RIGHT_LINE
15057          part { name: "elm.icon";
15058             clip_to: "disclip";
15059             type: SWALLOW;
15060             scale: 1;
15061             description { state: "default" 0.0;
15062                min: 60 60;
15063                max: 60 60;
15064                fixed: 1 1;
15065                rel1.to_x: "elm.padding.right";
15066                rel2 {
15067                   relative: 0.0 1.0;
15068                   to_x: "elm.padding.right";
15069                }
15070                align: 1.0 0.5;
15071             }
15072             GENLIST_DESCRIPTION_FLIP_ENABLED
15073          }
15074          part { name: "elm.padding.icon.left";
15075             clip_to: "disclip";
15076             type: RECT;
15077             scale: 1;
15078             description { state: "default" 0.0;
15079                min: 10 0;
15080                fixed: 1 0;
15081                rel1.to_x: "elm.icon";
15082                rel2 {
15083                   relative: 0.0 1.0;
15084                   to_x: "elm.icon";
15085                }
15086                align: 1.0 0.0;
15087                visible: 0;
15088             }
15089          }
15090          part { name: "elm.text";
15091             clip_to: "disclip";
15092             type: TEXT;
15093             mouse_events: 0;
15094             scale: 1;
15095             description { state: "default" 0.0;
15096                rel1 {
15097                   relative: 1.0 0.0;
15098                   to_x: "elm.padding.left";
15099                }
15100                rel2 {
15101                   relative: 0.0 1.0;
15102                   to_x: "elm.padding.icon.left";
15103                }
15104                align: 0.0 0.0;
15105                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15106                text {
15107                   font: "SLP:style=Roman";
15108                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15109                   min: 0 1;
15110                   align: 0.0 0.5;
15111                   text_class: "list_item";
15112                }
15113             }
15114             description { state: "selected" 0.0;
15115                inherit: "default" 0.0;
15116                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15117             }
15118             GENLIST_DESCRIPTION_FLIP_ENABLED
15119          }
15120          GENLIST_PART_FLIP
15121          GENLIST_PART_DISCLIP
15122       }
15123       programs {
15124          program { name: "go_active";
15125             signal: "elm,state,selected";
15126             source: "elm";
15127             action: STATE_SET "selected" 0.0;
15128             target: "bg_image";
15129             target: "elm.text";
15130             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15131          }
15132          program { name: "go_passive";
15133             signal: "elm,state,unselected";
15134             source: "elm";
15135             action: STATE_SET "default" 0.0;
15136             target: "bg_image";
15137             target: "elm.text";
15138             transition: LINEAR 0.1;
15139          }
15140          program { name: "go_disabled";
15141             signal: "elm,state,disabled";
15142             source: "elm";
15143             action: STATE_SET "disabled" 0.0;
15144             target: "disclip";
15145          }
15146          program { name: "go_enabled";
15147             signal: "elm,state,enabled";
15148             source: "elm";
15149             action: STATE_SET "default" 0.0;
15150             target: "disclip";
15151          }
15152          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15153          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15154       }
15155    }
15156
15157    // 4.1.19
15158    group { name: "elm/genlist/item/dialogue/1text.1icon.5/default";
15159       alias: "elm/genlist/item_odd/dialogue/1text.1icon.5/default";
15160       alias: "elm/genlist/item_compress/dialogue/1text.1icon.5/default";
15161       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.5/default";
15162
15163       data.item: "stacking" "above";
15164       data.item: "selectraise" "on";
15165       data.item: "texts" "elm.text.1";
15166       data.item: "contents" "elm.icon.1";
15167
15168       parts {
15169          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
15170                  GENLIST_PART_DIALOGUE_BG_IMAGE
15171          GENLIST_PART_BOTTOM_LINE
15172          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
15173          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
15174          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15175          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15176          GENLIST_PART_DIALOGUE_ITEM
15177          GENLIST_PART_DIALOGUE_RIGHT_LINE
15178          part { name: "elm.text.1";
15179             clip_to: "disclip";
15180             type: TEXT;
15181             mouse_events: 0;
15182             scale: 1;
15183             description { state: "default" 0.0;
15184                min: 0 GENLIST_SIZE_48_INC;
15185                fixed: 0 1;
15186                rel1 {
15187                   relative: 1.0 1.0;
15188                   to_x: "elm.padding.left";
15189                   to_y: "elm.padding.top";
15190                }
15191                rel2 {
15192                   relative: 0.0 1.0;
15193                   to_x: "elm.padding.right";
15194                   to_y: "elm.padding.top";
15195                }
15196                align: 0.0 0.0;
15197                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
15198                text {
15199                   font: "SLP:style=Medium";
15200                   size: GENLIST_FONT_32_INC;
15201                   min: 0 1;
15202                   align: 0.0 0.5;
15203                   text_class: "list_item";
15204                }
15205             }
15206             description { state: "selected" 0.0;
15207                inherit: "default" 0.0;
15208                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
15209             }
15210             GENLIST_DESCRIPTION_FLIP_ENABLED
15211          }
15212          part { name: "elm.icon.1";
15213             type: SWALLOW;
15214             scale: 1;
15215             description { state: "default" 0.0;
15216                rel1 {
15217                   relative: 1.0 1.0;
15218                   to_x: "elm.padding.left";
15219                   to_y: "elm.text.1";
15220                }
15221                rel2 {
15222                   relative: 0.0 0.0;
15223                   to_x: "elm.padding.right";
15224                   to_y: "elm.padding.bottom";
15225                }
15226             }
15227          }
15228          GENLIST_PART_DISCLIP
15229       }
15230       programs {
15231          // signal: elm,state,%s,active
15232          //   a "check" item named %s went active
15233          // signal: elm,state,%s,passive
15234          //   a "check" item named %s went passive
15235          // default is passive
15236          /*program { name: "go_active";
15237             signal: "elm,state,selected";
15238             source: "elm";
15239             action: STATE_SET "selected" 0.0;
15240             target: "bg_image";
15241             target: "elm.text";
15242          }
15243          program { name: "go_passive";
15244             signal: "elm,state,unselected";
15245             source: "elm";
15246             action: STATE_SET "default" 0.0;
15247             target: "bg_image";
15248             target: "elm.text";
15249             transition: LINEAR 0.1;
15250          }*/
15251          program { name: "go_disabled";
15252             signal: "elm,state,disabled";
15253             source: "elm";
15254             action: STATE_SET "disabled" 0.0;
15255             target: "disclip";
15256          }
15257          program { name: "go_enabled";
15258             signal: "elm,state,enabled";
15259             source: "elm";
15260             action: STATE_SET "default" 0.0;
15261             target: "disclip";
15262          }
15263       }
15264    }
15265
15266    group { name: "elm/genlist/item/dialogue/2text.5/default";
15267       alias: "elm/genlist/item_odd/dialogue/2text.5/default";
15268       alias: "elm/genlist/item_compress/dialogue/2text.5/default";
15269       alias: "elm/genlist/item_compress_odd/dialogue/2text.5/default";
15270       data.item: "stacking" "above";
15271       data.item: "selectraise" "on";
15272       data.item: "texts" "elm.text.1 elm.text.2";
15273       data.item: "flips" "elm.flip.content";
15274       parts {
15275          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15276          GENLIST_PART_DIALOGUE_BG_IMAGE
15277          GENLIST_PART_BOTTOM_LINE
15278          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15279          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15280          GENLIST_PART_DIALOGUE_ITEM
15281          GENLIST_PART_DIALOGUE_RIGHT_LINE
15282          part { name: "elm.text.2";
15283             clip_to: "disclip";
15284             type: TEXT;
15285             mouse_events: 0;
15286             scale: 1;
15287             description { state: "default" 0.0;
15288                min: GENLIST_SIZE_154_INC 0;
15289                fixed: 1 0;
15290                rel1.to_x: "elm.padding.right";
15291                rel2 {
15292                   relative: 0.0 1.0;
15293                   to_x: "elm.padding.right";
15294                }
15295                align: 1.0 0.5;
15296                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;;
15297                text {
15298                   font: "SLP:style=Medium";
15299                   size: GENLIST_FONT_32_INC;
15300                   min: 0 1;
15301                   align: 1.0 0.5;
15302                   text_class: "slp_roman";
15303                }
15304             }
15305             description { state: "selected" 0.0;
15306                inherit: "default" 0.0;
15307                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15308             }
15309             GENLIST_DESCRIPTION_FLIP_ENABLED
15310          }
15311          part { name: "elm.padding.text2.left";
15312             type: RECT;
15313             mouse_events: 0;
15314             scale: 1;
15315             description { state: "default" 0.0;
15316                min: GENLIST_ICON_SMALL_SIZE 0;
15317                fixed: 1 0;
15318                rel1.to_x: "elm.text.2";
15319                rel2 {
15320                   relative: 0.0 1.0;
15321                   to_x: "elm.text.2";
15322                }
15323                visible: 0;
15324                align: 1.0 0.5;
15325             }
15326          }
15327          part { name: "elm.text.1";
15328             clip_to: "disclip";
15329             type: TEXT;
15330             mouse_events: 0;
15331             scale: 1;
15332             description { state: "default" 0.0;
15333                rel1 {
15334                   relative: 1.0 0.0;
15335                   to_x: "elm.padding.left";
15336                }
15337                rel2 {
15338                   relative: 0.0 1.0;
15339                   to_x: "elm.padding.text2.left";
15340                }
15341                align: 0.0 0.0;
15342                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15343                text {
15344                   font: "SLP:style=Roman";
15345                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15346                   min: 0 1;
15347                   align: 0.0 0.5;
15348                   text_class: "list_item";
15349                }
15350             }
15351             description { state: "selected" 0.0;
15352                inherit: "default" 0.0;
15353                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15354             }
15355             GENLIST_DESCRIPTION_FLIP_ENABLED
15356          }
15357          GENLIST_PART_FLIP
15358          GENLIST_PART_DISCLIP
15359       }
15360       programs {
15361          program { name: "go_active";
15362             signal: "elm,state,selected";
15363             source: "elm";
15364             action: STATE_SET "selected" 0.0;
15365             target: "bg_image";
15366             target: "elm.text.1";
15367             target: "elm.text.2";
15368             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15369          }
15370          program { name: "go_passive";
15371             signal: "elm,state,unselected";
15372             source: "elm";
15373             action: STATE_SET "default" 0.0;
15374             target: "bg_image";
15375             target: "elm.text.1";
15376             target: "elm.text.2";
15377             transition: LINEAR 0.1;
15378          }
15379          program { name: "go_disabled";
15380             signal: "elm,state,disabled";
15381             source: "elm";
15382             action: STATE_SET "disabled" 0.0;
15383             target: "disclip";
15384          }
15385          program { name: "go_enabled";
15386             signal: "elm,state,enabled";
15387             source: "elm";
15388             action: STATE_SET "default" 0.0;
15389             target: "disclip";
15390          }
15391          GENLIST_PROGRAM_FLIP_2TEXT
15392          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15393          //GENLIST_PROGRAM_FLIP_1TEXT
15394       }
15395    }
15396
15397    group { name: "elm/genlist/item/dialogue/1text.2icon.2/default";
15398       alias: "elm/genlist/item_odd/dialogue/1text.2icon.2/default";
15399       alias: "elm/genlist/item_compress/dialogue/1text.2icon.2/default";
15400       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon.2/default";
15401       alias: "elm/layout/dialogue/1text.2icon.2";
15402       data.item: "stacking" "above";
15403       data.item: "selectraise" "on";
15404       data.item: "texts" "elm.text";
15405       data.item: "contents" "elm.icon.1 elm.icon.2";
15406       data.item: "flips" "elm.flip.content";
15407       parts {
15408          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15409          GENLIST_PART_DIALOGUE_BG_IMAGE
15410          GENLIST_PART_BOTTOM_LINE
15411          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15412          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15413          GENLIST_PART_DIALOGUE_ITEM
15414          GENLIST_PART_DIALOGUE_RIGHT_LINE
15415          part { name: "elm.icon.1";
15416             clip_to: "disclip";
15417             type: SWALLOW;
15418             scale: 1;
15419             description { state: "default" 0.0;
15420                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15421                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15422                fixed: 1 1;
15423                rel1 {
15424                   relative: 1.0 0.0;
15425                   to_x: "elm.padding.left";
15426                }
15427                rel2 {
15428                   relative: 1.0 1.0;
15429                   to_x: "elm.padding.left";
15430                }
15431                align: 0.0 0.5;
15432             }
15433             GENLIST_DESCRIPTION_FLIP_ENABLED
15434          }
15435          part { name: "elm.padding.icon1.right";
15436             clip_to: "disclip";
15437             type: RECT;
15438             scale: 1;
15439             description { state: "default" 0.0;
15440                min: GENLIST_PADDING_16_INC 0;
15441                fixed: 1 0;
15442                rel1 {
15443                   relative: 1.0 0.0;
15444                   to_x: "elm.icon.1";
15445                }
15446                rel2.to_x: "elm.icon.1";
15447                align: 0.0 0.0;
15448                visible: 0;
15449             }
15450          }
15451          part { name: "elm.icon.2";
15452             clip_to: "disclip";
15453             type: SWALLOW;
15454             scale: 1;
15455             description { state: "default" 0.0;
15456                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15457                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15458                fixed: 1 1;
15459                rel1.to_x: "elm.padding.right";
15460                rel2 {
15461                   relative: 0.0 1.0;
15462                   to_x: "elm.padding.right";
15463                }
15464                align: 1.0 0.5;
15465             }
15466             GENLIST_DESCRIPTION_FLIP_ENABLED
15467          }
15468          part { name: "elm.padding.icon2.left";
15469             clip_to: "disclip";
15470             type: RECT;
15471             scale: 1;
15472             description { state: "default" 0.0;
15473                min: GENLIST_PADDING_16_INC 0;
15474                fixed: 1 0;
15475                rel1.to_x: "elm.icon.2";
15476                rel2 {
15477                   relative: 0.0 1.0;
15478                   to_x: "elm.icon.2";
15479                }
15480                align: 1.0 0.0;
15481                visible: 0;
15482             }
15483          }
15484          part { name: "elm.text";
15485             clip_to: "disclip";
15486             type: TEXT;
15487             mouse_events: 0;
15488             scale: 1;
15489             description { state: "default" 0.0;
15490                rel1 {
15491                   relative: 1.0 0.0;
15492                   to_x: "elm.padding.icon1.right";
15493                }
15494                rel2 {
15495                   relative: 0.0 1.0;
15496                   to_x: "elm.padding.icon2.left";
15497                }
15498                align: 0.0 0.0;
15499                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15500                text {
15501                   font: "SLP:style=Roman";
15502                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15503                   min: 0 1;
15504                   align: 0.0 0.5;
15505                   text_class: "list_item";
15506                }
15507             }
15508             description { state: "selected" 0.0;
15509                inherit: "default" 0.0;
15510                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15511             }
15512             GENLIST_DESCRIPTION_FLIP_ENABLED
15513          }
15514          GENLIST_PART_FLIP
15515          GENLIST_PART_DISCLIP
15516       }
15517       programs {
15518          program { name: "go_active";
15519             signal: "elm,state,selected";
15520             source: "elm";
15521             action: STATE_SET "selected" 0.0;
15522             target: "bg_image";
15523             target: "elm.text";
15524             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15525          }
15526          program { name: "go_passive";
15527             signal: "elm,state,unselected";
15528             source: "elm";
15529             action: STATE_SET "default" 0.0;
15530             target: "bg_image";
15531             target: "elm.text";
15532             transition: LINEAR 0.1;
15533          }
15534          program { name: "go_disabled";
15535             signal: "elm,state,disabled";
15536             source: "elm";
15537             action: STATE_SET "disabled" 0.0;
15538             target: "disclip";
15539          }
15540          program { name: "go_enabled";
15541             signal: "elm,state,enabled";
15542             source: "elm";
15543             action: STATE_SET "default" 0.0;
15544             target: "disclip";
15545          }
15546          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
15547          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15548       }
15549    }
15550
15551    group { name: "elm/genlist/item/dialogue/1text.3icon/default";
15552       alias: "elm/genlist/item_odd/dialogue/1text.3icon/default";
15553       alias: "elm/genlist/item_compress/dialogue/1text.3icon/default";
15554       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon/default";
15555       alias: "elm/layout/dialogue/1text.3icon";
15556       data.item: "stacking" "above";
15557       data.item: "selectraise" "on";
15558       data.item: "texts" "elm.text";
15559       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
15560       data.item: "flips" "elm.flip.content";
15561       parts {
15562          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15563          GENLIST_PART_DIALOGUE_BG_IMAGE
15564          GENLIST_PART_BOTTOM_LINE
15565          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15566          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15567          GENLIST_PART_DIALOGUE_ITEM
15568          GENLIST_PART_DIALOGUE_RIGHT_LINE
15569          part { name: "elm.icon.1";
15570             clip_to: "disclip";
15571             type: SWALLOW;
15572             scale: 1;
15573             description { state: "default" 0.0;
15574                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15575                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15576                fixed: 1 1;
15577                rel1 {
15578                   relative: 1.0 0.0;
15579                   to_x: "elm.padding.left";
15580                }
15581                rel2 {
15582                   relative: 1.0 1.0;
15583                   to_x: "elm.padding.left";
15584                }
15585                align: 0.0 0.5;
15586             }
15587             GENLIST_DESCRIPTION_FLIP_ENABLED
15588          }
15589          part { name: "elm.padding.icon1.right";
15590             clip_to: "disclip";
15591             type: RECT;
15592             scale: 1;
15593             description { state: "default" 0.0;
15594                min: GENLIST_PADDING_16_INC 0;
15595                fixed: 1 0;
15596                rel1 {
15597                   relative: 1.0 0.0;
15598                   to_x: "elm.icon.1";
15599                }
15600                rel2.to_x: "elm.icon.1";
15601                align: 0.0 0.0;
15602                visible: 0;
15603             }
15604          }
15605          part { name: "elm.icon.3";
15606             clip_to: "disclip";
15607             type: SWALLOW;
15608             scale: 1;
15609             description { state: "default" 0.0;
15610                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15611                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15612                fixed: 1 1;
15613                rel1.to_x: "elm.padding.right";
15614                rel2 {
15615                   relative: 0.0 1.0;
15616                   to_x: "elm.padding.right";
15617                }
15618                align: 1.0 0.5;
15619             }
15620             GENLIST_DESCRIPTION_FLIP_ENABLED
15621          }
15622          part { name: "elm.padding.icon3.left";
15623             clip_to: "disclip";
15624             type: RECT;
15625             scale: 1;
15626             description { state: "default" 0.0;
15627                min: GENLIST_PADDING_16_INC 0;
15628                fixed: 1 0;
15629                rel1.to_x: "elm.icon.3";
15630                rel2 {
15631                   relative: 0.0 1.0;
15632                   to_x: "elm.icon.3";
15633                }
15634                align: 1.0 0.0;
15635                visible: 0;
15636             }
15637          }
15638          part { name: "elm.icon.2";
15639             clip_to: "disclip";
15640             type: SWALLOW;
15641             scale: 1;
15642             description { state: "default" 0.0;
15643                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15644                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15645                fixed: 1 1;
15646                rel1.to_x: "elm.padding.icon3.left";
15647                rel2 {
15648                   relative: 0.0 1.0;
15649                   to_x: "elm.padding.icon3.left";
15650                }
15651                align: 1.0 0.5;
15652             }
15653             GENLIST_DESCRIPTION_FLIP_ENABLED
15654          }
15655          part { name: "elm.padding.icon2.left";
15656             clip_to: "disclip";
15657             type: RECT;
15658             scale: 1;
15659             description { state: "default" 0.0;
15660                min: GENLIST_PADDING_16_INC 0;
15661                fixed: 1 0;
15662                rel1.to_x: "elm.icon.2";
15663                rel2 {
15664                   relative: 0.0 1.0;
15665                   to_x: "elm.icon.2";
15666                }
15667                align: 0.0 0.0;
15668                visible: 0;
15669             }
15670          }
15671          part { name: "elm.text";
15672             clip_to: "disclip";
15673             type: TEXT;
15674             mouse_events: 0;
15675             scale: 1;
15676             description { state: "default" 0.0;
15677                rel1 {
15678                   relative: 1.0 0.0;
15679                   to_x: "elm.padding.icon1.right";
15680                }
15681                rel2 {
15682                   relative: 0.0 1.0;
15683                   to_x: "elm.padding.icon2.left";
15684                }
15685                align: 0.0 0.5;
15686                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15687                text {
15688                   font: "SLP:style=Roman";
15689                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15690                   min: 0 1;
15691                   align: 0.0 0.5;
15692                   text_class: "list_item";
15693                }
15694             }
15695             description { state: "selected" 0.0;
15696                inherit: "default" 0.0;
15697                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15698             }
15699             GENLIST_DESCRIPTION_FLIP_ENABLED
15700          }
15701          GENLIST_PART_FLIP
15702          GENLIST_PART_DISCLIP
15703       }
15704       programs {
15705          // signal: elm,state,%s,active
15706          //   a "check" item named %s went active
15707          // signal: elm,state,%s,passive
15708          //   a "check" item named %s went passive
15709          // default is passive
15710          program { name: "go_active";
15711             signal: "elm,state,selected";
15712             source: "elm";
15713             action: STATE_SET "selected" 0.0;
15714             target: "bg_image";
15715             target: "elm.text";
15716             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15717          }
15718          program { name: "go_passive";
15719             signal: "elm,state,unselected";
15720             source: "elm";
15721             action: STATE_SET "default" 0.0;
15722             target: "bg_image";
15723             target: "elm.text";
15724             transition: LINEAR 0.1;
15725          }
15726          program { name: "go_disabled";
15727             signal: "elm,state,disabled";
15728             source: "elm";
15729             action: STATE_SET "disabled" 0.0;
15730             target: "disclip";
15731          }
15732          program { name: "go_enabled";
15733             signal: "elm,state,enabled";
15734             source: "elm";
15735             action: STATE_SET "default" 0.0;
15736             target: "disclip";
15737          }
15738          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
15739          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15740          //GENLIST_PROGRAM_FLIP_1TEXT
15741       }
15742    }
15743
15744    /* password style 2.4.2.13 */
15745    /* on landscape mode, 4 swallow parts will be placed left-align basis with having padding on the right side. */
15746    group { name: "elm/genlist/item/dialogue/1text.4icon/default";
15747       alias: "elm/genlist/item_odd/dialogue/1text.4icon/default";
15748       alias: "elm/genlist/item_compress/dialogue/1text.4icon/default";
15749       alias: "elm/genlist/item_compress_odd/dialogue/1text.4icon/default";
15750       alias: "elm/layout/dialogue/4icon";
15751       data.item: "stacking" "above";
15752       data.item: "selectraise" "on";
15753       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
15754       data.item: "texts" "elm.text.1";
15755       images {
15756          image : "00_search_input_field_bg.png" COMP;
15757       }
15758       parts {
15759          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
15760          GENLIST_PART_DIALOGUE_BG_IMAGE
15761          GENLIST_PART_BOTTOM_LINE
15762          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
15763          GENLIST_PART_PADDING_BOTTOM( 23 )
15764          GENLIST_PART_PADDING_LEFT( 42 )
15765          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15766          GENLIST_PART_DIALOGUE_ITEM
15767          GENLIST_PART_DIALOGUE_RIGHT_LINE
15768          part { name: "elm.text.1";
15769             clip_to: "disclip";
15770             type: TEXT;
15771             mouse_events: 0;
15772             scale: 1;
15773             description { state: "default" 0.0;
15774                fixed: 1 1;
15775                rel1.relative: 42/720 10/206;
15776                rel2.relative: 703/720 58/206;
15777                color: GENLIST_DIALOGUE_FONT_PASSWORD_TITLE_COLOR_INC;
15778                text {
15779                   font: "SLP:style=Medium";
15780                   size: GENLIST_FONT_32_INC;
15781                   min: 0 0;
15782                   align: 0.0 0;
15783                   text_class: "list_item";
15784                }
15785             }
15786             description { state: "selected" 0.0;
15787                inherit: "default" 0.0;
15788                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15789             }
15790          }
15791          part { name: "elm.icon1.bg";
15792             clip_to: "disclip";
15793             type: IMAGE;
15794             scale: 1;
15795             description { state: "default" 0.0;
15796                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15797                fixed: 1 1;
15798                rel1.relative: 146/720 126/206;
15799                rel2.relative: 146/720 126/206;
15800                image.normal: "00_search_input_field_bg.png";
15801                image.border: 5 5 5 5;
15802                image.border_scale: 1;
15803             }
15804          }
15805          part { name: "elm.icon.1";
15806             clip_to: "disclip";
15807             type: SWALLOW;
15808             scale: 1;
15809             description { state: "default" 0.0;
15810                rel1 {
15811                   to: "elm.icon1.bg";
15812                   offset: 3 3;
15813                }
15814                rel2 {
15815                   to: "elm.icon1.bg";
15816                   offset: -3 -3;
15817                }
15818                align: 0.5 0.5;
15819             }
15820          }
15821          part { name: "elm.icon2.bg";
15822             clip_to: "disclip";
15823             type: IMAGE;
15824             scale: 1;
15825             description { state: "default" 0.0;
15826                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15827                fixed: 1 1;
15828                rel1.relative: 294/720 126/206;
15829                rel2.relative: 294/720 126/206;
15830                image.normal: "00_search_input_field_bg.png";
15831                image.border: 5 5 5 5;
15832                image.border_scale: 1;
15833             }
15834          }
15835          part { name: "elm.icon.2";
15836             clip_to: "disclip";
15837             type: SWALLOW;
15838             scale: 1;
15839             description { state: "default" 0.0;
15840                rel1 {
15841                   to: "elm.icon2.bg";
15842                   offset: 3 3;
15843                }
15844                rel2 {
15845                   to: "elm.icon2.bg";
15846                   offset: -3 -3;
15847                }
15848                align: 0.5 0.5;
15849             }
15850          }
15851          part { name: "elm.icon3.bg";
15852             clip_to: "disclip";
15853             type: IMAGE;
15854             scale: 1;
15855             description { state: "default" 0.0;
15856                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15857                fixed: 1 1;
15858                rel1.relative: 442/720 126/206;
15859                rel2.relative: 442/720 126/206;
15860                image.normal: "00_search_input_field_bg.png";
15861                image.border: 5 5 5 5;
15862                image.border_scale: 1;
15863             }
15864          }
15865          part { name: "elm.icon.3";
15866             clip_to: "disclip";
15867             type: SWALLOW;
15868             scale: 1;
15869             description { state: "default" 0.0;
15870                rel1 {
15871                   to: "elm.icon3.bg";
15872                   offset: 3 3;
15873                }
15874                rel2 {
15875                   to: "elm.icon3.bg";
15876                   offset: -3 -3;
15877                }
15878                align: 0.5 0.5;
15879             }
15880          }
15881          part { name: "elm.icon4.bg";
15882             clip_to: "disclip";
15883             type: IMAGE;
15884             scale: 1;
15885             description { state: "default" 0.0;
15886                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15887                fixed: 1 1;
15888                rel1.relative: 590/720 126/206;
15889                rel2.relative: 590/720 126/206;
15890                image.normal: "00_search_input_field_bg.png";
15891                image.border: 5 5 5 5;
15892                image.border_scale: 1;
15893             }
15894          }
15895          part { name: "elm.icon.4";
15896             clip_to: "disclip";
15897             type: SWALLOW;
15898             scale: 1;
15899             description { state: "default" 0.0;
15900                rel1 {
15901                   to: "elm.icon4.bg";
15902                   offset: 3 3;
15903                }
15904                rel2 {
15905                   to: "elm.icon4.bg";
15906                   offset: -3 -3;
15907                }
15908                align: 0.5 0.5;
15909             }
15910          }         GENLIST_PART_DISCLIP
15911       }
15912       programs {
15913          // signal: elm,state,%s,active
15914          //   a "check" item named %s went active
15915          // signal: elm,state,%s,passive
15916          //   a "check" item named %s went passive
15917          // default is passive
15918          /*program { name: "go_active";
15919             signal: "elm,state,selected";
15920             source: "elm";
15921             action: STATE_SET "selected" 0.0;
15922             target: "bg_image";
15923             target: "elm.text.1";
15924             target: "elm.text.2";
15925          }
15926          program { name: "go_passive";
15927             signal: "elm,state,unselected";
15928             source: "elm";
15929             action: STATE_SET "default" 0.0;
15930             target: "bg_image";
15931             target: "elm.text.1";
15932             target: "elm.text.2";
15933             transition: LINEAR 0.1;
15934          }*/
15935          program { name: "go_disabled";
15936             signal: "elm,state,disabled";
15937             source: "elm";
15938             action: STATE_SET "disabled" 0.0;
15939             target: "disclip";
15940          }
15941          program { name: "go_enabled";
15942             signal: "elm,state,enabled";
15943             source: "elm";
15944             action: STATE_SET "default" 0.0;
15945             target: "disclip";
15946          }
15947       }
15948    }
15949
15950    group { name: "elm/genlist/item/dialogue/3icon/default";
15951       alias: "elm/genlist/item_odd/dialogue/3icon/default";
15952       alias: "elm/genlist/item_compress/dialogue/3icon/default";
15953       alias: "elm/genlist/item_compress_odd/dialogue/3icon/default";
15954       alias: "elm/layout/dialogue/3icon";
15955       data.item: "stacking" "above";
15956       data.item: "selectraise" "on";
15957       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
15958       parts {
15959          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15960          GENLIST_PART_DIALOGUE_BG_IMAGE
15961          GENLIST_PART_BOTTOM_LINE
15962          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15963          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15964          GENLIST_PART_DIALOGUE_ITEM
15965          GENLIST_PART_DIALOGUE_RIGHT_LINE
15966          part { name: "elm.icon.1";
15967             clip_to: "disclip";
15968             type: SWALLOW;
15969             scale: 1;
15970             description { state: "default" 0.0;
15971                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
15972                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
15973                fixed: 1 1;
15974                rel1 {
15975                   relative: 1.0 0.0;
15976                   to_x: "elm.padding.left";
15977                }
15978                rel2 {
15979                   relative: 1.0 1.0;
15980                   to_x: "elm.padding.left";
15981                }
15982                align: 0.0 0.5;
15983             }
15984             GENLIST_DESCRIPTION_FLIP_ENABLED
15985          }
15986          part { name: "elm.padding.icon1.right";
15987             clip_to: "disclip";
15988             type: RECT;
15989             scale: 1;
15990             description { state: "default" 0.0;
15991                min: GENLIST_PADDING_16_INC 0;
15992                fixed: 1 0;
15993                rel1 {
15994                   relative: 1.0 0.0;
15995                   to_x: "elm.icon.1";
15996                }
15997                rel2.to_x: "elm.icon.1";
15998                align: 0.0 0.0;
15999                visible: 0;
16000             }
16001          }
16002          part { name: "elm.icon.3";
16003             clip_to: "disclip";
16004             type: SWALLOW;
16005             scale: 1;
16006             description { state: "default" 0.0;
16007                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16008                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16009                fixed: 1 1;
16010                rel1.to_x: "elm.padding.right";
16011                rel2 {
16012                   relative: 0.0 1.0;
16013                   to_x: "elm.padding.right";
16014                }
16015                align: 1.0 0.5;
16016             }
16017             GENLIST_DESCRIPTION_FLIP_ENABLED
16018          }
16019          part { name: "elm.padding.icon3.left";
16020             clip_to: "disclip";
16021             type: RECT;
16022             scale: 1;
16023             description { state: "default" 0.0;
16024                min: GENLIST_PADDING_16_INC 0;
16025                fixed: 1 0;
16026                rel1.to_x: "elm.icon.3";
16027                rel2 {
16028                   relative: 0.0 1.0;
16029                   to_x: "elm.icon.3";
16030                }
16031                align: 1.0 0.0;
16032                visible: 0;
16033             }
16034          }
16035          part { name: "elm.icon.2";
16036             clip_to: "disclip";
16037             type: SWALLOW;
16038             scale: 1;
16039             description { state: "default" 0.0;
16040                rel1 {
16041                   relative: 1.0 0.0;
16042                   to_x: "elm.padding.icon1.right";
16043                }
16044                rel2 {
16045                   relative: 0.0 1.0;
16046                   to_x: "elm.padding.icon3.left";
16047                }
16048                align: 0.0 0.5;
16049             }
16050             GENLIST_DESCRIPTION_FLIP_ENABLED
16051          }
16052          GENLIST_PART_DISCLIP
16053       }
16054       programs {
16055          // signal: elm,state,%s,active
16056          //   a "check" item named %s went active
16057          // signal: elm,state,%s,passive
16058          //   a "check" item named %s went passive
16059          // default is passive
16060          program { name: "go_disabled";
16061             signal: "elm,state,disabled";
16062             source: "elm";
16063             action: STATE_SET "disabled" 0.0;
16064             target: "disclip";
16065          }
16066          program { name: "go_enabled";
16067             signal: "elm,state,enabled";
16068             source: "elm";
16069             action: STATE_SET "default" 0.0;
16070             target: "disclip";
16071          }
16072       }
16073    }
16074
16075    group { name: "elm/genlist/item/dialogue/2text.1icon.4/default";
16076       alias: "elm/genlist/item_odd/dialogue/2text.1icon.4/default";
16077       alias: "elm/genlist/item_compress/dialogue/2text.1icon.4/default";
16078       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.4/default";
16079       alias: "elm/layout/dialogue/2text.1icon.4";
16080       data.item: "stacking" "above";
16081       data.item: "selectraise" "on";
16082       data.item: "texts" "elm.text.1 elm.text.2";
16083       data.item: "contents" "elm.icon";
16084       data.item: "flips" "elm.flip.content";
16085       parts {
16086          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16087          GENLIST_PART_DIALOGUE_BG_IMAGE
16088          GENLIST_PART_BOTTOM_LINE
16089          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_11_INC )
16090          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
16091          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16092          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16093          GENLIST_PART_DIALOGUE_ITEM
16094          GENLIST_PART_DIALOGUE_RIGHT_LINE
16095          part { name: "elm.text.2";
16096             clip_to: "disclip";
16097             type: TEXT;
16098             mouse_events: 0;
16099             scale: 1;
16100             description { state: "default" 0.0;
16101                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
16102                fixed: 1 1;
16103                rel1 {
16104                   relative: 0.0 1.0;
16105                   to_x: "elm.padding.right";
16106                   to_y: "elm.padding.top";
16107                }
16108                rel2 {
16109                   relative: 0.0 1.0;
16110                   to_x: "elm.padding.right";
16111                   to_y: "elm.padding.top";
16112                }
16113                align: 1.0 0.0;
16114                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
16115                text {
16116                   font: "SLP:style=Medium";
16117                   size: GENLIST_FONT_32_INC;
16118                   min: 0 1;
16119                   align: 1.0 0.5;
16120                   text_class: "slp_medium";
16121                }
16122             }
16123             description { state: "selected" 0.0;
16124                inherit: "default" 0.0;
16125                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
16126             }
16127             GENLIST_DESCRIPTION_FLIP_ENABLED
16128          }
16129          part { name: "elm.padding.text2.left";
16130             clip_to: "disclip";
16131             type: RECT;
16132             mouse_events: 0;
16133             scale: 1;
16134             description { state: "default" 0.0;
16135                min: GENLIST_ICON_SMALL_SIZE 0;
16136                fixed: 1 0;
16137                rel1.to_x: "elm.text.2";
16138                rel2 {
16139                   relative: 0.0 1.0;
16140                   to_x: "elm.text.2";
16141                }
16142                align: 1.0 0.5;
16143                visible: 0;
16144             }
16145          }
16146          part { name: "elm.text.1";
16147             clip_to: "disclip";
16148             type: TEXT;
16149             mouse_events: 0;
16150             scale: 1;
16151             description { state: "default" 0.0;
16152                rel1 {
16153                   relative: 1.0 1.0;
16154                   to_x: "elm.padding.left";
16155                   to_y: "elm.padding.top";
16156                }
16157                rel2 {
16158                   relative: 0.0 1.0;
16159                   to_x: "elm.padding.text2.left";
16160                   to_y: "elm.text.2";
16161                }
16162                align: 0.0 0.5;
16163                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16164                text {
16165                   font: "SLP:style=Roman";
16166                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16167                   min: 0 1;
16168                   align: 0.0 0.5;
16169                   text_class: "list_item";
16170                }
16171             }
16172             description { state: "selected" 0.0;
16173                inherit: "default" 0.0;
16174                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
16175             }
16176             GENLIST_DESCRIPTION_FLIP_ENABLED
16177          }
16178          part { name: "elm.icon";
16179             clip_to: "disclip";
16180             type: SWALLOW;
16181             scale: 1;
16182             description { state: "default" 0.0;
16183                min: 0 GENLIST_SIZE_16_INC;
16184                fixed: 0 1;
16185                rel1 {
16186                   relative: 1.0 0.0;
16187                   to_x: "elm.padding.left";
16188                   to_y: "elm.padding.bottom";
16189                }
16190                rel2 {
16191                   relative: 0.0 0.0;
16192                   to_x: "elm.padding.right";
16193                   to_y: "elm.padding.bottom";
16194                }
16195                align: 0.0 1.0;
16196             }
16197             GENLIST_DESCRIPTION_FLIP_ENABLED
16198          }
16199          GENLIST_PART_FLIP
16200          GENLIST_PART_DISCLIP
16201       }
16202       programs {
16203          // signal: elm,state,%s,active
16204          //   a "check" item named %s went active
16205          // signal: elm,state,%s,passive
16206          //   a "check" item named %s went passive
16207          // default is passive
16208          program { name: "go_active";
16209             signal: "elm,state,selected";
16210             source: "elm";
16211             action: STATE_SET "selected" 0.0;
16212             target: "bg_image";
16213             target: "elm.text.1";
16214             target: "elm.text.2";
16215             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16216          }
16217          program { name: "go_passive";
16218             signal: "elm,state,unselected";
16219             source: "elm";
16220             action: STATE_SET "default" 0.0;
16221             target: "bg_image";
16222             target: "elm.text.1";
16223             target: "elm.text.2";
16224             transition: LINEAR 0.1;
16225          }
16226          program { name: "go_disabled";
16227             signal: "elm,state,disabled";
16228             source: "elm";
16229             action: STATE_SET "disabled" 0.0;
16230             target: "disclip";
16231          }
16232          program { name: "go_enabled";
16233             signal: "elm,state,enabled";
16234             source: "elm";
16235             action: STATE_SET "default" 0.0;
16236             target: "disclip";
16237          }
16238          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
16239          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16240       }
16241    }
16242
16243    group { name: "elm/genlist/item/dialogue/1title.1text/default";
16244       alias: "elm/genlist/item_odd/dialogue/1title.1text/default";
16245       alias: "elm/genlist/item_compress/dialogue/1title.1text/default";
16246       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text/default";
16247       alias: "elm/genlist/item/dialogue.1title.1text/default";
16248       alias: "elm/genlist/item_odd/dialogue.1title.1text/default";
16249       alias: "elm/genlist/item_compress/dialogue.1title.1text/default";
16250       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text/default";
16251       alias: "elm/layout/dialogue/1title.1text";
16252       data.item: "stacking" "above";
16253       data.item: "selectraise" "on";
16254       data.item: "texts" "elm.title elm.text";
16255       data.item: "flips" "elm.flip.content";
16256       parts {
16257          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16258          GENLIST_PART_DIALOGUE_BG_IMAGE
16259          GENLIST_PART_BOTTOM_LINE
16260          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16261          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16262          GENLIST_PART_DIALOGUE_ITEM
16263          GENLIST_PART_DIALOGUE_RIGHT_LINE
16264          part { name: "elm.title";
16265             clip_to: "disclip";
16266             type: TEXT;
16267             mouse_events: 0;
16268             scale: 1;
16269             description { state: "default" 0.0;
16270                min: GENLIST_SIZE_163_INC 0;
16271                fixed: 1 0;
16272                rel1 {
16273                   relative: 1.0 0.0;
16274                   to_x: "elm.padding.left";
16275                }
16276                rel2.to_x: "elm.padding.left";
16277                align: 0.0 0.5;
16278                color: GENLIST_MULTILINE_TEXT_COLOR;
16279                text {
16280                   font: "SLP:style=Medium";
16281                   size: GENLIST_MULTILINE_TEXT_SIZE;
16282                   min: 0 1;
16283                   align: 0.0 0.5;
16284                   text_class: "slp_roman";
16285                }
16286             }
16287          }
16288          part { name: "vertical_line";
16289             type: RECT;
16290             mouse_events: 0;
16291             description { state: "default" 0.0;
16292                min: 1 0;
16293                fixed: 1 0;
16294                rel1 {
16295                   relative: 1.0 0.0;
16296                   to_x: "elm.title";
16297                }
16298                rel2.to_x: "elm.title";
16299                align: 0.0 0.5;
16300                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16301             }
16302          }
16303          part { name: "elm.padding.text.left";
16304             clip_to: "disclip";
16305             type: RECT;
16306             mouse_events: 0;
16307             scale: 1;
16308             description { state: "default" 0.0;
16309                min: GENLIST_PADDING_16_INC 0;
16310                fixed: 1 0;
16311                rel1 {
16312                    relative: 1.0 0.0;
16313                    to_x: "vertical_line";
16314                }
16315                rel2.to_x: "vertical_line";
16316                align: 0.0 0.5;
16317                visible: 0;
16318             }
16319          }
16320          part { name: "elm.text";
16321             clip_to: "disclip";
16322             type: TEXT;
16323             mouse_events: 0;
16324             scale: 1;
16325             description { state: "default" 0.0;
16326                rel1 {
16327                   relative: 1.0 0.0;
16328                   to_x: "elm.padding.text.left";
16329                }
16330                rel2 {
16331                   relative: 0.0 1.0;
16332                   to_x: "elm.padding.right";
16333                }
16334                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16335                text {
16336                   font: "SLP:style=Roman";
16337                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16338                   min: 0 1;
16339                   align: 0.0 0.5;
16340                   text_class: "list_item";
16341                }
16342             }
16343             GENLIST_DESCRIPTION_FLIP_ENABLED
16344          }
16345          part { name: "elm.flip.content";
16346             clip_to: "disclip";
16347             type: SWALLOW;
16348             mouse_events: 1;
16349             scale: 1;
16350             description { state: "default" 0.0;
16351                fixed: 1 1;
16352                rel1 {
16353                   relative: 0.0 0.5;
16354                   to_x: "elm.text";
16355                }
16356                rel2 {
16357                   relative: 0.0 0.5;
16358                   to_x: "elm.padding.right";
16359                }
16360                visible: 0;
16361             }
16362             description { state: "flip_enabled" 0.0;
16363                inherit: "default" 0.0;
16364                visible: 1;
16365             }
16366          }
16367          GENLIST_PART_DISCLIP
16368       }
16369       programs {
16370          // signal: elm,state,%s,active
16371          //   a "check" item named %s went active
16372          // signal: elm,state,%s,passive
16373          //   a "check" item named %s went passive
16374          // default is passive
16375          /*program { name: "go_active";
16376             signal: "elm,state,selected";
16377             source: "elm";
16378             action: STATE_SET "selected" 0.0;
16379             target: "elm.text";
16380          }
16381          program { name: "go_passive";
16382             signal: "elm,state,unselected";
16383             source: "elm";
16384             action: STATE_SET "default" 0.0;
16385             target: "elm.text";
16386             transition: LINEAR 0.1;
16387          }*/
16388          program { name: "go_disabled";
16389             signal: "elm,state,disabled";
16390             source: "elm";
16391             action: STATE_SET "disabled" 0.0;
16392             target: "disclip";
16393          }
16394          program { name: "go_enabled";
16395             signal: "elm,state,enabled";
16396             source: "elm";
16397             action: STATE_SET "default" 0.0;
16398             target: "disclip";
16399          }
16400          //GENLIST_PROGRAM_FLIP_1TEXT
16401       }
16402    }
16403
16404    group { name: "elm/genlist/item/dialogue/1title.1text.3/default";
16405       alias: "elm/genlist/item_odd/dialogue/1title.1text.3/default";
16406       alias: "elm/genlist/item_compress/dialogue/1title.1text.3/default";
16407       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.3/default";
16408       alias: "elm/genlist/item/dialogue.1title.1text.3/default";
16409       alias: "elm/genlist/item_odd/dialogue.1title.1text.3/default";
16410       alias: "elm/genlist/item_compress/dialogue.1title.1text.3/default";
16411       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.3/default";
16412       alias: "elm/layout/dialogue/1title.1text.3";
16413       data.item: "stacking" "above";
16414       data.item: "selectraise" "on";
16415       data.item: "texts" "elm.title elm.text";
16416       data.item: "flips" "elm.flip.content.title elm.flip.content";
16417       parts {
16418          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16419          GENLIST_PART_DIALOGUE_BG_IMAGE
16420          GENLIST_PART_BOTTOM_LINE
16421          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16422          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16423          GENLIST_PART_DIALOGUE_ITEM
16424          GENLIST_PART_DIALOGUE_RIGHT_LINE
16425          part { name: "elm.title";
16426             clip_to: "disclip";
16427             type: TEXT;
16428             mouse_events: 0;
16429             scale: 1;
16430             description { state: "default" 0.0;
16431                min: GENLIST_SIZE_163_INC 0;
16432                fixed: 1 0;
16433                rel1 {
16434                   relative: 1.0 0.0;
16435                   to_x: "elm.padding.left";
16436                }
16437                rel2.to_x: "elm.padding.left";
16438                align: 0.0 0.5;
16439                color: GENLIST_MULTILINE_TEXT_COLOR;
16440                text {
16441                   font: "SLP:style=Medium";
16442                   size: GENLIST_MULTILINE_TEXT_SIZE;
16443                   min: 0 1;
16444                   align: 0.0 0.5;
16445                   text_class: "slp_medium";
16446                }
16447             }
16448             GENLIST_DESCRIPTION_FLIP_ENABLED
16449          }
16450          part { name: "elm.flip.content.title";
16451             clip_to: "disclip";
16452             type: SWALLOW;
16453             description { state: "default" 0.0;
16454                visible: 0;
16455                fixed: 1 1;
16456                rel1.to: "elm.title";
16457                rel2.to: "elm.title";
16458             }
16459             description { state: "flip_enabled" 0.0;
16460                inherit: "default" 0.0;
16461                visible: 1;
16462             }
16463          }
16464          part { name: "vertical_line";
16465             type: RECT;
16466             mouse_events: 0;
16467             description { state: "default" 0.0;
16468                min: 1 0;
16469                fixed: 1 0;
16470                rel1 {
16471                   relative: 1.0 0.0;
16472                   to_x: "elm.title";
16473                }
16474                rel2.to_x: "elm.title";
16475                align: 0.0 0.5;
16476                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16477             }
16478          }
16479          part { name: "elm.padding.text.left";
16480             clip_to: "disclip";
16481             type: RECT;
16482             mouse_events: 0;
16483             scale: 1;
16484             description { state: "default" 0.0;
16485                min: GENLIST_PADDING_16_INC 0;
16486                fixed: 1 0;
16487                rel1 {
16488                    relative: 1.0 0.0;
16489                    to_x: "vertical_line";
16490                }
16491                rel2.to_x: "vertical_line";
16492                align: 0.0 0.5;
16493                visible: 0;
16494             }
16495          }
16496          part { name: "elm.text";
16497             clip_to: "disclip";
16498             type: TEXT;
16499             mouse_events: 0;
16500             scale: 1;
16501             description { state: "default" 0.0;
16502                rel1 {
16503                   relative: 1.0 0.0;
16504                   to_x: "elm.padding.text.left";
16505                }
16506                rel2 {
16507                   relative: 0.0 1.0;
16508                   to_x: "elm.padding.right";
16509                }
16510                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16511                text {
16512                   font: "SLP:style=Roman";
16513                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16514                   min: 0 1;
16515                   align: 0.0 0.5;
16516                   text_class: "list_item";
16517                }
16518             }
16519             GENLIST_DESCRIPTION_FLIP_ENABLED
16520          }
16521          part { name: "elm.flip.content";
16522             clip_to: "disclip";
16523             type: SWALLOW;
16524             mouse_events: 1;
16525             scale: 1;
16526             description { state: "default" 0.0;
16527                fixed: 1 1;
16528                rel1 {
16529                   relative: 0.0 0.5;
16530                   to_x: "elm.text";
16531                }
16532                rel2 {
16533                   relative: 0.0 0.5;
16534                   to_x: "elm.padding.right";
16535                }
16536                visible: 0;
16537             }
16538             description { state: "flip_enabled" 0.0;
16539                inherit: "default" 0.0;
16540                visible: 1;
16541             }
16542          }
16543          GENLIST_PART_DISCLIP
16544       }
16545       programs {
16546          // signal: elm,state,%s,active
16547          //   a "check" item named %s went active
16548          // signal: elm,state,%s,passive
16549          //   a "check" item named %s went passive
16550          // default is passive
16551          /*program { name: "go_active";
16552             signal: "elm,state,selected";
16553             source: "elm";
16554             action: STATE_SET "selected" 0.0;
16555             target: "elm.text";
16556          }
16557          program { name: "go_passive";
16558             signal: "elm,state,unselected";
16559             source: "elm";
16560             action: STATE_SET "default" 0.0;
16561             target: "elm.text";
16562             transition: LINEAR 0.1;
16563          }*/
16564          program { name: "go_disabled";
16565             signal: "elm,state,disabled";
16566             source: "elm";
16567             action: STATE_SET "disabled" 0.0;
16568             target: "disclip";
16569          }
16570          program { name: "go_enabled";
16571             signal: "elm,state,enabled";
16572             source: "elm";
16573             action: STATE_SET "default" 0.0;
16574             target: "disclip";
16575          }
16576          program { name: "flip_enabled";
16577             signal: "elm,state,flip,enabled";
16578             source: "elm";
16579             action: STATE_SET "flip_enabled" 0.0;
16580             target: "elm.title";
16581             target: "elm.text";
16582             target: "elm.flip.content.title";
16583             target: "elm.flip.content";
16584          }
16585          program { name: "flip_disabled";
16586             signal: "elm,state,flip,disabled";
16587             source: "elm";
16588             action: STATE_SET "default" 0.0;
16589             target: "elm.title";
16590             target: "elm.text";
16591             target: "elm.flip.content.title";
16592             target: "elm.flip.content";
16593          }
16594       }
16595    }
16596
16597    group { name: "elm/genlist/item/dialogue/1title.1text.1icon/default";
16598       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon/default";
16599       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon/default";
16600       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon/default";
16601       alias: "elm/layout/dialogue/1title.1text.1icon";
16602       data.item: "stacking" "above";
16603       data.item: "selectraise" "on";
16604       data.item: "texts" "elm.title elm.text";
16605       data.item: "contents" "elm.icon";
16606       data.item: "flips" "elm.flip.content";
16607       parts {
16608          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16609          GENLIST_PART_DIALOGUE_BG_IMAGE
16610          GENLIST_PART_BOTTOM_LINE
16611          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16612          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16613          GENLIST_PART_DIALOGUE_ITEM
16614          GENLIST_PART_DIALOGUE_RIGHT_LINE
16615          part { name: "elm.title";
16616             clip_to: "disclip";
16617             type: TEXT;
16618             mouse_events: 0;
16619             scale: 1;
16620             description { state: "default" 0.0;
16621                min: GENLIST_SIZE_163_INC 0;
16622                fixed: 1 0;
16623                rel1 {
16624                   relative: 1.0 0.0;
16625                   to_x: "elm.padding.left";
16626                }
16627                rel2.to_x: "elm.padding.left";
16628                align: 0.0 0.5;
16629                color: GENLIST_MULTILINE_TEXT_COLOR;
16630                text {
16631                   font: "SLP:style=Medium";
16632                   size: GENLIST_MULTILINE_TEXT_SIZE;
16633                   min: 0 1;
16634                   align: 0.0 0.5;
16635                   text_class: "slp_medium";
16636                }
16637             }
16638          }
16639          part { name: "vertical_line";
16640             type: RECT;
16641             mouse_events: 0;
16642             description { state: "default" 0.0;
16643                min: 1 0;
16644                fixed: 1 0;
16645                rel1 {
16646                   relative: 1.0 0.0;
16647                   to_x: "elm.title";
16648                }
16649                rel2.to_x: "elm.title";
16650                align: 0.0 0.5;
16651                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16652             }
16653          }
16654          part { name: "elm.padding.text.left";
16655             clip_to: "disclip";
16656             type: RECT;
16657             mouse_events: 0;
16658             scale: 1;
16659             description { state: "default" 0.0;
16660                min: GENLIST_PADDING_16_INC 0;
16661                fixed: 1 0;
16662                rel1 {
16663                    relative: 1.0 0.0;
16664                    to_x: "vertical_line";
16665                }
16666                rel2.to_x: "vertical_line";
16667                align: 0.0 0.5;
16668                visible: 0;
16669             }
16670          }
16671          part { name: "elm.icon";
16672            clip_to: "disclip";
16673             type: SWALLOW;
16674             mouse_events: 0;
16675             scale: 1;
16676             description { state: "default" 0.0;
16677                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16678                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16679                fixed: 1 1;
16680                rel1.to_x: "elm.padding.right";
16681                rel2 {
16682                   relative: 0.0 1.0;
16683                   to_x: "elm.padding.right";
16684                }
16685                align: 1.0 0.5;
16686             }
16687          }
16688          part { name: "elm.padding.icon.left";
16689             clip_to: "disclip";
16690             type: RECT;
16691             mouse_events: 0;
16692             scale: 1;
16693             description { state: "default" 0.0;
16694                min: GENLIST_PADDING_16_INC 0;
16695                fixed: 1 0;
16696                rel1.to_x: "elm.icon";
16697                rel2 {
16698                    relative: 0.0 1.0;
16699                    to_x: "elm.icon";
16700                }
16701                rel2.to_x: "elm.icon";
16702                align: 1.0 0.5;
16703                visible: 0;
16704             }
16705          }
16706          part { name: "elm.text";
16707             clip_to: "disclip";
16708             type: TEXT;
16709             mouse_events: 0;
16710             scale: 1;
16711             description { state: "default" 0.0;
16712                rel1 {
16713                   relative: 1.0 0.0;
16714                   to_x: "elm.padding.text.left";
16715                }
16716                rel2 {
16717                   relative: 0.0 1.0;
16718                   to_x: "elm.padding.icon.left";
16719                }
16720                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
16721                text {
16722                   font: "SLP:style=Roman";
16723                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16724                   min: 0 1;
16725                   align: 0.0 0.5;
16726                   text_class: "list_item";
16727                }
16728             }
16729             GENLIST_DESCRIPTION_FLIP_ENABLED
16730          }
16731          part { name: "elm.flip.content";
16732             clip_to: "disclip";
16733             type: SWALLOW;
16734             mouse_events: 1;
16735             scale: 1;
16736             description { state: "default" 0.0;
16737                fixed: 1 1;
16738                rel1 {
16739                   relative: 0.0 0.5;
16740                   to_x: "elm.text";
16741                }
16742                rel2 {
16743                   relative: 0.0 0.5;
16744                   to_x: "elm.padding.right";
16745                }
16746                visible: 0;
16747             }
16748             description { state: "flip_enabled" 0.0;
16749                inherit: "default" 0.0;
16750                visible: 1;
16751             }
16752          }
16753          GENLIST_PART_DISCLIP
16754       }
16755       programs {
16756          // signal: elm,state,%s,active
16757          //   a "check" item named %s went active
16758          // signal: elm,state,%s,passive
16759          //   a "check" item named %s went passive
16760          // default is passive
16761          /*program { name: "go_active";
16762             signal: "elm,state,selected";
16763             source: "elm";
16764             action: STATE_SET "selected" 0.0;
16765             target: "elm.text";
16766          }
16767          program { name: "go_passive";
16768             signal: "elm,state,unselected";
16769             source: "elm";
16770             action: STATE_SET "default" 0.0;
16771             target: "elm.text";
16772             transition: LINEAR 0.1;
16773          }*/
16774          program { name: "go_disabled";
16775             signal: "elm,state,disabled";
16776             source: "elm";
16777             action: STATE_SET "disabled" 0.0;
16778             target: "disclip";
16779          }
16780          program { name: "go_enabled";
16781             signal: "elm,state,enabled";
16782             source: "elm";
16783             action: STATE_SET "default" 0.0;
16784             target: "disclip";
16785          }
16786          //GENLIST_PROGRAM_FLIP_1TEXT
16787       }
16788    }
16789
16790    group { name: "elm/genlist/item/dialogue/1title.1text.1icon.2/default";
16791       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon.2/default";
16792       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon.2/default";
16793       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon.2/default";
16794       alias: "elm/layout/dialogue/1title.1text.1icon.2";
16795       data.item: "stacking" "above";
16796       data.item: "selectraise" "on";
16797       data.item: "texts" "elm.title elm.text";
16798       data.item: "contents" "elm.icon";
16799       data.item: "flips" "elm.flip.content.title elm.flip.content";
16800       parts {
16801          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16802          GENLIST_PART_DIALOGUE_BG_IMAGE
16803          GENLIST_PART_BOTTOM_LINE
16804          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16805          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16806          GENLIST_PART_DIALOGUE_ITEM
16807          GENLIST_PART_DIALOGUE_RIGHT_LINE
16808          part { name: "elm.title";
16809             clip_to: "disclip";
16810             type: TEXT;
16811             mouse_events: 0;
16812             scale: 1;
16813             description { state: "default" 0.0;
16814                min: GENLIST_SIZE_163_INC 0;
16815                fixed: 1 0;
16816                rel1 {
16817                   relative: 1.0 0.0;
16818                   to_x: "elm.padding.left";
16819                }
16820                rel2.to_x: "elm.padding.left";
16821                align: 0.0 0.5;
16822                color: GENLIST_MULTILINE_TEXT_COLOR;
16823                text {
16824                   font: "SLP:style=Medium";
16825                   size: GENLIST_MULTILINE_TEXT_SIZE;
16826                   min: 0 1;
16827                   align: 0.0 0.5;
16828                   text_class: "slp_medium";
16829                }
16830             }
16831             GENLIST_DESCRIPTION_FLIP_ENABLED
16832          }
16833          part { name: "elm.flip.content.title";
16834             clip_to: "disclip";
16835             type: SWALLOW;
16836             description { state: "default" 0.0;
16837                visible: 0;
16838                fixed: 1 1;
16839                rel1.to: "elm.title";
16840                rel2.to: "elm.title";
16841             }
16842             description { state: "flip_enabled" 0.0;
16843                inherit: "default" 0.0;
16844                visible: 1;
16845             }
16846          }
16847          part { name: "vertical_line";
16848             type: RECT;
16849             mouse_events: 0;
16850             description { state: "default" 0.0;
16851                min: 1 0;
16852                fixed: 1 0;
16853                rel1 {
16854                   relative: 1.0 0.0;
16855                   to_x: "elm.title";
16856                }
16857                rel2.to_x: "elm.title";
16858                align: 0.0 0.5;
16859                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16860             }
16861          }
16862          part { name: "elm.padding.text.left";
16863             clip_to: "disclip";
16864             type: RECT;
16865             mouse_events: 0;
16866             scale: 1;
16867             description { state: "default" 0.0;
16868                min: GENLIST_PADDING_16_INC 0;
16869                fixed: 1 0;
16870                rel1 {
16871                    relative: 1.0 0.0;
16872                    to_x: "vertical_line";
16873                }
16874                rel2.to_x: "vertical_line";
16875                align: 0.0 0.5;
16876                visible: 0;
16877             }
16878          }
16879          part { name: "elm.icon";
16880            clip_to: "disclip";
16881             type: SWALLOW;
16882             mouse_events: 0;
16883             scale: 1;
16884             description { state: "default" 0.0;
16885                min: 0 0;
16886                max: 0 0;
16887                rel1.to_x: "elm.padding.right";
16888                rel2 {
16889                   relative: 0.0 1.0;
16890                   to_x: "elm.padding.right";
16891                }
16892                align: 1.0 0.5;
16893                visible: 0;
16894             }
16895             description { state: "contact_default_number_enabled" 0.0;
16896                inherit: "default" 0.0;
16897                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16898                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16899                visible: 1;
16900             }
16901          }
16902          part { name: "elm.padding.icon.left";
16903             clip_to: "disclip";
16904             type: RECT;
16905             mouse_events: 0;
16906             scale: 1;
16907             description { state: "default" 0.0;
16908                min: 0 0;
16909                fixed: 1 0;
16910                rel1.to_x: "elm.icon";
16911                rel2 {
16912                    relative: 0.0 1.0;
16913                    to_x: "elm.icon";
16914                }
16915                rel2.to_x: "elm.icon";
16916                align: 1.0 0.5;
16917                visible: 0;
16918             }
16919             description { state: "contact_default_number_enabled" 0.0;
16920                inherit: "default" 0.0;
16921                min: GENLIST_PADDING_16_INC 0;
16922             }
16923          }
16924          part { name: "elm.text";
16925             clip_to: "disclip";
16926             type: TEXT;
16927             mouse_events: 0;
16928             scale: 1;
16929             description { state: "default" 0.0;
16930                rel1 {
16931                   relative: 1.0 0.0;
16932                   to_x: "elm.padding.text.left";
16933                }
16934                rel2 {
16935                   relative: 0.0 1.0;
16936                   to_x: "elm.padding.icon.left";
16937                }
16938                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16939                text {
16940                   font: "SLP:style=Roman";
16941                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16942                   min: 0 1;
16943                   align: 0.0 0.5;
16944                   text_class: "list_item";
16945                }
16946             }
16947             description { state: "contact_default_number_enabled" 0.0;
16948                inherit: "default" 0.0;
16949                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
16950             }
16951             GENLIST_DESCRIPTION_FLIP_ENABLED
16952          }
16953          part { name: "elm.flip.content";
16954             clip_to: "disclip";
16955             type: SWALLOW;
16956             mouse_events: 1;
16957             scale: 1;
16958             description { state: "default" 0.0;
16959                fixed: 1 1;
16960                rel1 {
16961                   relative: 0.0 0.5;
16962                   to_x: "elm.text";
16963                }
16964                rel2 {
16965                   relative: 1.0 0.5;
16966                   to_x: "elm.padding.icon.left";
16967                }
16968                visible: 0;
16969             }
16970             description { state: "flip_enabled" 0.0;
16971                inherit: "default" 0.0;
16972                visible: 1;
16973             }
16974          }
16975          GENLIST_PART_DISCLIP
16976       }
16977       programs {
16978          // signal: elm,state,%s,active
16979          //   a "check" item named %s went active
16980          // signal: elm,state,%s,passive
16981          //   a "check" item named %s went passive
16982          // default is passive
16983          /*program { name: "go_active";
16984             signal: "elm,state,selected";
16985             source: "elm";
16986             action: STATE_SET "selected" 0.0;
16987             target: "elm.text";
16988          }
16989          program { name: "go_passive";
16990             signal: "elm,state,unselected";
16991             source: "elm";
16992             action: STATE_SET "default" 0.0;
16993             target: "elm.text";
16994             transition: LINEAR 0.1;
16995          }*/
16996          program { name: "go_disabled";
16997             signal: "elm,state,disabled";
16998             source: "elm";
16999             action: STATE_SET "disabled" 0.0;
17000             target: "disclip";
17001          }
17002          program { name: "go_enabled";
17003             signal: "elm,state,enabled";
17004             source: "elm";
17005             action: STATE_SET "default" 0.0;
17006             target: "disclip";
17007          }
17008          program { name: "flip_enabled";
17009             signal: "elm,state,flip,enabled";
17010             source: "elm";
17011             action: STATE_SET "flip_enabled" 0.0;
17012             target: "elm.title";
17013             target: "elm.text";
17014             target: "elm.flip.content.title";
17015             target: "elm.flip.content";
17016          }
17017          program { name: "flip_disabled";
17018             signal: "elm,state,flip,disabled";
17019             source: "elm";
17020             action: STATE_SET "default" 0.0;
17021             target: "elm.title";
17022             target: "elm.text";
17023             target: "elm.flip.content.title";
17024             target: "elm.flip.content";
17025          }
17026          program { name: "contact_default_number_enabled";
17027             signal: "elm,state,contact,default_number,enabled";
17028             source: "elm";
17029             action: STATE_SET "contact_default_number_enabled" 0.0;
17030             target: "elm.icon";
17031             target: "elm.padding.icon.left";
17032             target: "elm.text";
17033          }
17034          program { name: "contact_default_number_disabled";
17035             signal: "elm,state,contact,default_number,disabled";
17036             source: "elm";
17037             action: STATE_SET "default" 0.0;
17038             target: "elm.icon";
17039             target: "elm.padding.icon.left";
17040             target: "elm.text";
17041          }
17042       }
17043    }
17044
17045    group { name: "elm/genlist/item/dialogue/2text.4/default";
17046       alias: "elm/genlist/item_odd/dialogue/2text.4/default";
17047       alias: "elm/genlist/item_compress/dialogue/2text.4/default";
17048       alias: "elm/genlist/item_compress_odd/dialogue/2text.4/default";
17049       alias: "elm/layout/dialogue/2text.4";
17050       data.item: "stacking" "above";
17051       data.item: "selectraise" "on";
17052       data.item: "texts" "elm.text.1 elm.text.2";
17053       data.item: "flips" "elm.flip.content";
17054       parts {
17055          GENLIST_PART_BASE( GENLIST_HEIGHT_97_INC )
17056          GENLIST_PART_DIALOGUE_BG_IMAGE
17057          GENLIST_PART_BOTTOM_LINE
17058          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
17059          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17060          GENLIST_PART_DIALOGUE_ITEM
17061          GENLIST_PART_DIALOGUE_RIGHT_LINE
17062          part { name: "elm.text.2";
17063             clip_to: "disclip";
17064             type: TEXT;
17065             mouse_events: 0;
17066             scale: 1;
17067             description { state: "default" 0.0;
17068                min: GENLIST_SIZE_206_INC 0;
17069                fixed: 1 0;
17070                rel1.to_x: "elm.padding.right";
17071                rel2 {
17072                   relative: 0.0 1.0;
17073                   to_x: "elm.padding.right";
17074                }
17075                rel2.to_x: "elm.padding.right";
17076                align: 1.0 0.5;
17077                color: GENLIST_MULTILINE_TEXT_COLOR;
17078                text {
17079                   font: "SLP:style=Medium";
17080                   size: GENLIST_MULTILINE_TEXT_SIZE;
17081                   min: 0 1;
17082                   align: 0.0 0.5;
17083                   text_class: "slp_medium";
17084                }
17085             }
17086          }
17087          part { name: "elm.padding.text2.left";
17088             type: RECT;
17089             mouse_events: 0;
17090             scale: 1;
17091             description { state: "default" 0.0;
17092                min: GENLIST_PADDING_16_INC 0;
17093                fixed: 1 0;
17094                rel1.to_x: "elm.text.2";
17095                rel2 {
17096                   relative: 0.0 1.0;
17097                   to_x: "elm.text.2";
17098                }
17099                align: 1.0 0.5;
17100                visible: 0;
17101             }
17102          }
17103          part { name: "vertical_line";
17104             type: RECT;
17105             mouse_events: 0;
17106             description { state: "default" 0.0;
17107                min: 1 0;
17108                fixed: 1 0;
17109                rel1.to_x: "elm.padding.text2.left";
17110                rel2 {
17111                   relative: 0.0 1.0;
17112                   to_x: "elm.padding.text2.left";
17113                }
17114                align: 1.0 0.5;
17115                color: GENLIST_PART_LIST_LINE_COLOR_INC;
17116             }
17117          }
17118          part { name: "elm.padding.text1.right";
17119             type: RECT;
17120             mouse_events: 0;
17121             scale: 1;
17122             description { state: "default" 0.0;
17123                min: GENLIST_PADDING_16_INC 0;
17124                fixed: 1 0;
17125                rel1.to_x: "vertical_line";
17126                rel2 {
17127                   relative: 0.0 1.0;
17128                   to_x: "vertical_line";
17129                }
17130                align: 1.0 0.5;
17131                visible: 0;
17132             }
17133          }
17134          part { name: "elm.text.1";
17135             clip_to: "disclip";
17136             type: TEXT;
17137             mouse_events: 0;
17138             scale: 1;
17139             description { state: "default" 0.0;
17140                rel1 {
17141                   relative: 1.0 0.0;
17142                   to_x: "elm.padding.left";
17143                }
17144                rel2 {
17145                   relative: 0.0  1.0;
17146                   to_x: "elm.padding.text1.right";
17147                }
17148                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17149                text {
17150                   font: "SLP:style=Roman";
17151                   size: GENLIST_FONT_42_INC;
17152                   min: 0 1;
17153                   align: 1.0 0.5;
17154                   text_class: "list_item";
17155                }
17156             }
17157             description { state: "selected" 0.0;
17158                inherit: "default" 0.0;
17159                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17160             }
17161             GENLIST_DESCRIPTION_FLIP_ENABLED
17162          }
17163          part { name: "elm.flip.content";
17164             clip_to: "disclip";
17165             type: SWALLOW;
17166             mouse_events: 1;
17167             scale: 1;
17168             description { state: "default" 0.0;
17169                fixed: 1 1;
17170                rel1 {
17171                   relative: 1.0 0.5;
17172                   to_x: "vertical_line";
17173                }
17174                rel2 {
17175                   relative: 0.0 0.5;
17176                   to_x: "elm.padding.right";
17177                }
17178                visible: 0;
17179             }
17180             description { state: "flip_enabled" 0.0;
17181                inherit: "default" 0.0;
17182                visible: 1;
17183             }
17184          }
17185          GENLIST_PART_DISCLIP
17186       }
17187       programs {
17188          // signal: elm,state,%s,active
17189          //   a "check" item named %s went active
17190          // signal: elm,state,%s,passive
17191          //   a "check" item named %s went passive
17192          // default is passive
17193          /*program { name: "go_active";
17194             signal: "elm,state,selected";
17195             source: "elm";
17196             action: STATE_SET "selected" 0.0;
17197             target: "elm.text";
17198          }
17199          program { name: "go_passive";
17200             signal: "elm,state,unselected";
17201             source: "elm";
17202             action: STATE_SET "default" 0.0;
17203             target: "elm.text";
17204             transition: LINEAR 0.1;
17205          }*/
17206          program { name: "go_disabled";
17207             signal: "elm,state,disabled";
17208             source: "elm";
17209             action: STATE_SET "disabled" 0.0;
17210             target: "disclip";
17211          }
17212          program { name: "go_enabled";
17213             signal: "elm,state,enabled";
17214             source: "elm";
17215             action: STATE_SET "default" 0.0;
17216             target: "disclip";
17217          }
17218          GENLIST_PROGRAM_FLIP_2TEXT
17219       }
17220    }
17221
17222    group { name: "elm/genlist/item_compress/dialogue/2text.4.tb/default";
17223       inherit: "elm/genlist/item/dialogue/2text.4/default";
17224       parts {
17225          part { name: "elm.text.2";
17226             clip_to: "disclip";
17227             type: TEXTBLOCK;
17228             mouse_events: 0;
17229             scale: 1;
17230             description { state: "default" 0.0;
17231                min: GENLIST_SIZE_206_INC 0;
17232                fixed: 1 0;
17233                rel1.to_x: "elm.padding.right";
17234                rel2 {
17235                   relative: 0.0 1.0;
17236                   to_x: "elm.padding.right";
17237                }
17238                rel2.to_x: "elm.padding.right";
17239                align: 1.0 0.5;
17240                text {
17241                   style: "genlist_style_list_main_text_unread";
17242                   size: GENLIST_FONT_32_INC;
17243                   min: 0 1;
17244                   align: 0.0 0.5;
17245                }
17246             }
17247          }
17248       }
17249    }
17250
17251    group { name: "elm/genlist/item/dialogue/1text.3icon.2/default";
17252       alias: "elm/genlist/item_odd/dialogue/1text.3icon.2/default";
17253       alias: "elm/genlist/item_compress/dialogue/1text.3icon.2/default";
17254       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon.2/default";
17255       alias: "elm/layout/dialogue/1text.3icon.2";
17256       data.item: "stacking" "above";
17257       data.item: "selectraise" "on";
17258       data.item: "texts" "elm.text";
17259       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
17260       data.item: "flips" "elm.flip.content";
17261       images {
17262          image: "00_list_bar_press_1x80.png" COMP;
17263       }
17264       parts {
17265          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
17266          GENLIST_PART_DIALOGUE_BG_IMAGE
17267          GENLIST_PART_BOTTOM_LINE
17268          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17269          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17270          GENLIST_PART_DIALOGUE_ITEM
17271          GENLIST_PART_DIALOGUE_RIGHT_LINE
17272          part { name: "elm.icon.1";
17273             clip_to: "disclip";
17274             type: SWALLOW;
17275             scale: 1;
17276             description { state: "default" 0.0;
17277                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
17278                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
17279                fixed: 1 1;
17280                rel1 {
17281                   relative: 1.0 0.0;
17282                   to_x: "elm.padding.left";
17283                }
17284                rel2.to_x: "elm.padding.left";
17285                align: 0.0 0.5;
17286             }
17287             GENLIST_DESCRIPTION_FLIP_ENABLED
17288          }
17289          part { name: "elm.padding.icon1.right";
17290             clip_to: "disclip";
17291             type: RECT;
17292             scale: 1;
17293             description { state: "default" 0.0;
17294                min: GENLIST_SIZE_16_INC 0;
17295                fixed: 1 0;
17296                rel1 {
17297                   relative: 1.0 0.0;
17298                   to_x: "elm.icon.1";
17299                }
17300                rel2.to_x: "elm.icon.1";
17301                align: 0.0 0.0;
17302                visible: 0;
17303             }
17304          }
17305          part { name: "elm.icon.2";
17306             clip_to: "disclip";
17307             type: SWALLOW;
17308             scale: 1;
17309             description { state: "default" 0.0;
17310                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17311                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17312                fixed: 1 1;
17313                rel1 {
17314                   relative: 1.0 0.0;
17315                   to_x: "elm.padding.icon1.right";
17316                }
17317                rel2.to_x: "elm.padding.icon1.right";
17318                align: 0.0 0.5;
17319             }
17320             GENLIST_DESCRIPTION_FLIP_ENABLED
17321          }
17322          part { name: "elm.padding.icon2.right";
17323             clip_to: "disclip";
17324             type: RECT;
17325             scale: 1;
17326             description { state: "default" 0.0;
17327                min: GENLIST_SIZE_16_INC 0;
17328                fixed: 1 0;
17329                rel1 {
17330                   relative: 1.0 0.0;
17331                   to_x: "elm.icon.2";
17332                }
17333                rel2.to_x: "elm.icon.2";
17334                visible: 0;
17335             }
17336          }
17337          part { name: "elm.icon.3";
17338             clip_to: "disclip";
17339             type: SWALLOW;
17340             scale: 1;
17341             description { state: "default" 0.0;
17342                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17343                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17344                fixed: 1 1;
17345                rel1 {
17346                   relative: 0.0 0.0;
17347                   to_x: "elm.padding.right";
17348                }
17349                rel2 {
17350                   relative: 0.0 1.0;
17351                   to_x: "elm.padding.right";
17352                }
17353                align: 1.0 0.5;
17354             }
17355             GENLIST_DESCRIPTION_FLIP_ENABLED
17356          }
17357          part { name: "elm.padding.icon3.left";
17358             clip_to: "disclip";
17359             type: RECT;
17360             scale: 1;
17361             description { state: "default" 0.0;
17362                min: GENLIST_SIZE_16_INC 0;
17363                fixed: 1 0;
17364                rel1.to_x: "elm.icon.3";
17365                rel2 {
17366                   relative: 0.0 1.0;
17367                   to_x: "elm.icon.3";
17368                }
17369                align: 1.0 0.0;
17370                visible: 0;
17371             }
17372          }
17373          part { name: "elm.text";
17374             clip_to: "disclip";
17375             type: TEXT;
17376             mouse_events: 0;
17377             scale: 1;
17378             description { state: "default" 0.0;
17379                rel1 {
17380                   relative: 1.0 0.0;
17381                   to_x: "elm.padding.icon2.right";
17382                }
17383                rel2 {
17384                   relative: 0.0 1.0;
17385                   to_x: "elm.padding.icon3.left";
17386                }
17387                align: 0.0 0.5;
17388                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17389                text {
17390                   font: "SLP:style=Roman";
17391                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17392                   min: 0 1;
17393                   align: 0.0 0.5;
17394                   text_class: "list_item";
17395                }
17396             }
17397             description { state: "selected" 0.0;
17398                inherit: "default" 0.0;
17399                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17400             }
17401             GENLIST_DESCRIPTION_FLIP_ENABLED
17402          }
17403          GENLIST_PART_FLIP
17404          GENLIST_PART_DISCLIP
17405       }
17406       programs {
17407          program { name: "go_active";
17408             signal: "elm,state,selected";
17409             source: "elm";
17410             action: STATE_SET "selected" 0.0;
17411             target: "bg_image";
17412             target: "elm.text";
17413             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17414          }
17415          program { name: "go_passive";
17416             signal: "elm,state,unselected";
17417             source: "elm";
17418             action: STATE_SET "default" 0.0;
17419             target: "bg_image";
17420             target: "elm.text";
17421             transition: LINEAR 0.1;
17422          }
17423          program { name: "go_disabled";
17424             signal: "elm,state,disabled";
17425             source: "elm";
17426             action: STATE_SET "disabled" 0.0;
17427             target: "disclip";
17428          }
17429          program { name: "go_enabled";
17430             signal: "elm,state,enabled";
17431             source: "elm";
17432             action: STATE_SET "default" 0.0;
17433             target: "disclip";
17434          }
17435          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
17436          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17437       }
17438    }
17439
17440    group { name: "elm/genlist/item/dialogue/2text/default";
17441       alias: "elm/genlist/item_odd/dialogue/2text/default";
17442       alias: "elm/genlist/item_compress/dialogue/2text/default";
17443       alias: "elm/genlist/item_compress_odd/dialogue/2text/default";
17444       alias: "elm/layout/dialogue/2text";
17445       data.item: "stacking" "above";
17446       data.item: "selectraise" "on";
17447       data.item: "texts" "elm.text.1 elm.text.2";
17448       data.item: "flips" "elm.flip.content";
17449       parts {
17450          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17451          GENLIST_PART_DIALOGUE_BG_IMAGE
17452          GENLIST_PART_BOTTOM_LINE
17453          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17454          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17455          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17456          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17457          GENLIST_PART_DIALOGUE_ITEM
17458          GENLIST_PART_DIALOGUE_RIGHT_LINE
17459          part { name: "elm.text.1";
17460             clip_to: "disclip";
17461             type: TEXT;
17462             mouse_events: 0;
17463             scale: 1;
17464             description { state: "default" 0.0;
17465                min: 0 GENLIST_SIZE_61_INC;
17466                fixed: 0 1;
17467                rel1 {
17468                   relative: 1.0 1.0;
17469                   to_x: "elm.padding.left";
17470                   to_y: "elm.padding.top";
17471                }
17472                rel2 {
17473                   relative: 0.0 1.0;
17474                   to_x: "elm.padding.right";
17475                   to_y: "elm.padding.top";
17476                }
17477                align: 0.0 0.0;
17478                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17479                text {
17480                   font: "SLP:style=Roman";
17481                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17482                   min: 0 1;
17483                   align: 0.0 0.5;
17484                   text_class: "list_item";
17485                }
17486             }
17487             description { state: "selected" 0.0;
17488                inherit: "default" 0.0;
17489                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17490             }
17491             GENLIST_DESCRIPTION_FLIP_ENABLED
17492          }
17493          part { name: "elm.text.2";
17494             clip_to: "disclip";
17495             type: TEXT;
17496             mouse_events: 0;
17497             scale: 1;
17498             description { state: "default" 0.0;
17499                rel1 {
17500                   relative: 1.0 1.0;
17501                   to_x: "elm.padding.left";
17502                   to_y: "elm.text.1";
17503                }
17504                rel2 {
17505                   relative: 0.0 0.0;
17506                   to_x: "elm.padding.right";
17507                   to_y: "elm.padding.bottom";
17508                }
17509                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
17510                text {
17511                   font: "SLP:style=Medium";
17512                   size: GENLIST_FONT_32_INC;
17513                   min: 0 1;
17514                   align: 0.0 0.5;
17515                   text_class: "slp_medium";
17516                }
17517             }
17518             description { state: "selected" 0.0;
17519                inherit: "default" 0.0;
17520                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
17521             }
17522             GENLIST_DESCRIPTION_FLIP_ENABLED
17523          }
17524          GENLIST_PART_FLIP
17525          GENLIST_PART_DISCLIP
17526       }
17527       programs {
17528          // signal: elm,state,%s,active
17529          //   a "check" item named %s went active
17530          // signal: elm,state,%s,passive
17531          //   a "check" item named %s went passive
17532          // default is passive
17533          program { name: "go_active";
17534             signal: "elm,state,selected";
17535             source: "elm";
17536             action: STATE_SET "selected" 0.0;
17537             target: "bg_image";
17538             target: "elm.text.1";
17539             target: "elm.text.2";
17540             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17541          }
17542          program { name: "go_passive";
17543             signal: "elm,state,unselected";
17544             source: "elm";
17545             action: STATE_SET "default" 0.0;
17546             target: "bg_image";
17547             target: "elm.text.1";
17548             target: "elm.text.2";
17549             transition: LINEAR 0.1;
17550          }
17551          program { name: "go_disabled";
17552             signal: "elm,state,disabled";
17553             source: "elm";
17554             action: STATE_SET "disabled" 0.0;
17555             target: "disclip";
17556          }
17557          program { name: "go_enabled";
17558             signal: "elm,state,enabled";
17559             source: "elm";
17560             action: STATE_SET "default" 0.0;
17561             target: "disclip";
17562          }
17563          GENLIST_PROGRAM_FLIP_2TEXT
17564          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17565       }
17566    }
17567
17568    group { name: "elm/genlist/item/dialogue/2text.2/default";
17569       alias: "elm/genlist/item_odd/dialogue/2text.2/default";
17570       alias: "elm/genlist/item_compress/dialogue/2text.2/default";
17571       alias: "elm/genlist/item_compress_odd/dialogue/2text.2/default";
17572       alias: "elm/layout/dialogue/2text.2";
17573       data.item: "stacking" "above";
17574       data.item: "selectraise" "on";
17575       data.item: "texts" "elm.text.1 elm.text.2";
17576       data.item: "flips" "elm.flip.content";
17577       parts {
17578          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17579          GENLIST_PART_DIALOGUE_BG_IMAGE
17580          GENLIST_PART_BOTTOM_LINE
17581          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17582          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17583          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17584          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17585          GENLIST_PART_DIALOGUE_ITEM
17586          GENLIST_PART_DIALOGUE_RIGHT_LINE
17587          part { name: "elm.text.1";
17588             clip_to: "disclip";
17589             type: TEXT;
17590             mouse_events: 0;
17591             scale: 1;
17592             description { state: "default" 0.0;
17593                min: 0 GENLIST_SIZE_61_INC;
17594                fixed: 0 1;
17595                rel1 {
17596                   relative: 1.0 0.0;
17597                   to_x: "elm.padding.left";
17598                   to_y: "elm.padding.bottom";
17599                }
17600                rel2 {
17601                   relative: 0.0 0.0;
17602                   to_x: "elm.padding.right";
17603                   to_y: "elm.padding.bottom";
17604                }
17605                align: 0.0 1.0;
17606                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17607                text {
17608                   font: "SLP:style=Roman";
17609                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17610                   min: 0 1;
17611                   align: 0.0 0.5;
17612                   text_class: "list_item";
17613                }
17614             }
17615             description { state: "selected" 0.0;
17616                inherit: "default" 0.0;
17617                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17618             }
17619             GENLIST_DESCRIPTION_FLIP_ENABLED
17620          }
17621          part { name: "elm.text.2";
17622             clip_to: "disclip";
17623             type: TEXT;
17624             mouse_events: 0;
17625             scale: 1;
17626             description { state: "default" 0.0;
17627                rel1 {
17628                   relative: 1.0 1.0;
17629                   to_x: "elm.padding.left";
17630                   to_y: "elm.padding.top";
17631                }
17632                rel2 {
17633                   relative: 0.0 0.0;
17634                   to_x: "elm.padding.right";
17635                   to_y: "elm.text.1";
17636                }
17637                align: 0.0 1.0;
17638                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
17639                text {
17640                   font: "SLP:style=Medium";
17641                   size: GENLIST_FONT_32_INC;
17642                   min: 0 1;
17643                   align: 0.0 0.5;
17644                   text_class: "slp_medium";
17645                }
17646             }
17647             description { state: "selected" 0.0;
17648                inherit: "default" 0.0;
17649                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
17650             }
17651             GENLIST_DESCRIPTION_FLIP_ENABLED
17652          }
17653          GENLIST_PART_FLIP
17654          GENLIST_PART_DISCLIP
17655       }
17656       programs {
17657          // signal: elm,state,%s,active
17658          //   a "check" item named %s went active
17659          // signal: elm,state,%s,passive
17660          //   a "check" item named %s went passive
17661          // default is passive
17662          program { name: "go_active";
17663             signal: "elm,state,selected";
17664             source: "elm";
17665             action: STATE_SET "selected" 0.0;
17666             target: "bg_image";
17667             target: "elm.text.1";
17668             target: "elm.text.2";
17669             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17670          }
17671          program { name: "go_passive";
17672             signal: "elm,state,unselected";
17673             source: "elm";
17674             action: STATE_SET "default" 0.0;
17675             target: "bg_image";
17676             target: "elm.text.1";
17677             target: "elm.text.2";
17678             transition: LINEAR 0.1;
17679          }
17680          program { name: "go_disabled";
17681             signal: "elm,state,disabled";
17682             source: "elm";
17683             action: STATE_SET "disabled" 0.0;
17684             target: "disclip";
17685          }
17686          program { name: "go_enabled";
17687             signal: "elm,state,enabled";
17688             source: "elm";
17689             action: STATE_SET "default" 0.0;
17690             target: "disclip";
17691          }
17692          GENLIST_PROGRAM_FLIP_2TEXT
17693          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17694       }
17695    }
17696
17697    group { name: "elm/genlist/item/dialogue/2text.3/default";
17698       alias: "elm/genlist/item_odd/dialogue/2text.3/default";
17699       alias: "elm/genlist/item_compress/dialogue/2text.3/default";
17700       alias: "elm/genlist/item_compress_odd/dialogue/2text.3/default";
17701       alias: "elm/layout/dialogue/2text.3";
17702       data.item: "stacking" "above";
17703       data.item: "selectraise" "on";
17704       data.item: "texts" "elm.text.1 elm.text.2";
17705       data.item: "flips" "elm.flip.content";
17706       parts {
17707          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17708          GENLIST_PART_DIALOGUE_BG_IMAGE
17709          GENLIST_PART_BOTTOM_LINE
17710          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17711          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17712          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17713          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17714          GENLIST_PART_DIALOGUE_ITEM
17715          GENLIST_PART_DIALOGUE_RIGHT_LINE
17716          part { name: "elm.text.1";
17717             clip_to: "disclip";
17718             type: TEXT;
17719             mouse_events: 0;
17720             scale: 1;
17721             description { state: "default" 0.0;
17722                min: 0 GENLIST_SIZE_61_INC;
17723                fixed: 0 1;
17724                rel1 {
17725                   relative: 1.0 1.0;
17726                   to_x: "elm.padding.left";
17727                   to_y: "elm.padding.top";
17728                }
17729                rel2 {
17730                   relative: 0.0 1.0;
17731                   to_x: "elm.padding.right";
17732                   to_y: "elm.padding.top";
17733                }
17734                align: 0.0 0.0;
17735                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17736                text {
17737                   font: "SLP:style=Roman";
17738                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17739                   min: 0 1;
17740                   align: 0.0 0.5;
17741                   text_class: "list_item";
17742                }
17743             }
17744             description { state: "selected" 0.0;
17745                inherit: "default" 0.0;
17746                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17747             }
17748             GENLIST_DESCRIPTION_FLIP_ENABLED
17749          }
17750          part { name: "elm.text.2";
17751             clip_to: "disclip";
17752             type: TEXT;
17753             mouse_events: 0;
17754             scale: 1;
17755             description { state: "default" 0.0;
17756                rel1 {
17757                   relative: 1.0 1.0;
17758                   to_x: "elm.padding.left";
17759                   to_y: "elm.text.1";
17760                }
17761                rel2 {
17762                   relative: 0.0 0.0;
17763                   to_x: "elm.padding.right";
17764                   to_y: "elm.padding.bottom";
17765                }
17766                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
17767                text {
17768                   font: "SLP:style=Medium";
17769                   size: GENLIST_FONT_32_INC;
17770                   min: 0 1;
17771                   align: 0.0 0.5;
17772                   text_class: "slp_roman";
17773                }
17774             }
17775             description { state: "selected" 0.0;
17776                inherit: "default" 0.0;
17777                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17778             }
17779             GENLIST_DESCRIPTION_FLIP_ENABLED
17780          }
17781          GENLIST_PART_FLIP
17782          GENLIST_PART_DISCLIP
17783       }
17784       programs {
17785          // signal: elm,state,%s,active
17786          //   a "check" item named %s went active
17787          // signal: elm,state,%s,passive
17788          //   a "check" item named %s went passive
17789          // default is passive
17790          program { name: "go_active";
17791             signal: "elm,state,selected";
17792             source: "elm";
17793             action: STATE_SET "selected" 0.0;
17794             target: "bg_image";
17795             target: "elm.text.1";
17796             target: "elm.text.2";
17797             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17798          }
17799          program { name: "go_passive";
17800             signal: "elm,state,unselected";
17801             source: "elm";
17802             action: STATE_SET "default" 0.0;
17803             target: "bg_image";
17804             target: "elm.text.1";
17805             target: "elm.text.2";
17806             transition: LINEAR 0.1;
17807          }
17808          program { name: "go_disabled";
17809             signal: "elm,state,disabled";
17810             source: "elm";
17811             action: STATE_SET "disabled" 0.0;
17812             target: "disclip";
17813          }
17814          program { name: "go_enabled";
17815             signal: "elm,state,enabled";
17816             source: "elm";
17817             action: STATE_SET "default" 0.0;
17818             target: "disclip";
17819          }
17820          GENLIST_PROGRAM_FLIP_2TEXT
17821          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17822       }
17823    }
17824
17825    group { name: "elm/genlist/item/dialogue/2text.1icon.2/default";
17826       alias: "elm/genlist/item_odd/dialogue/2text.1icon.2/default";
17827       alias: "elm/genlist/item_compress/dialogue/2text.1icon.2/default";
17828       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.2/default";
17829       alias: "elm/layout/dialogue/2text.1icon.2";
17830       data.item: "stacking" "above";
17831       data.item: "selectraise" "on";
17832       data.item: "texts" "elm.text.1 elm.text.2";
17833       data.item: "contents" "elm.icon";
17834       data.item: "flips" "elm.flip.content";
17835       parts {
17836          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17837          GENLIST_PART_DIALOGUE_BG_IMAGE
17838          GENLIST_PART_BOTTOM_LINE
17839          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17840          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17841          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17842          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17843          GENLIST_PART_DIALOGUE_ITEM
17844          GENLIST_PART_DIALOGUE_RIGHT_LINE
17845          part { name: "elm.icon";
17846             clip_to: "disclip";
17847             type: SWALLOW;
17848             scale: 1;
17849             description { state: "default" 0.0;
17850                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17851                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17852                fixed: 1 1;
17853                rel1 {
17854                   relative: 1.0 0.0;
17855                   to_x: "elm.padding.left";
17856                }
17857                rel2.to_x: "elm.padding.left";
17858                align: 0.0 0.5;
17859             }
17860             GENLIST_DESCRIPTION_FLIP_ENABLED
17861          }
17862          part { name: "elm.padding.icon.right";
17863             clip_to: "disclip";
17864             type: RECT;
17865             scale: 1;
17866             description { state: "default" 0.0;
17867                min: GENLIST_PADDING_16_INC 0;
17868                fixed: 1 0;
17869                rel1 {
17870                   relative: 1.0 0.0;
17871                   to_x: "elm.icon";
17872                }
17873                rel2.to_x: "elm.icon";
17874                align: 0.0 0.0;
17875                visible: 0;
17876             }
17877          }
17878          part { name: "elm.text.1";
17879             clip_to: "disclip";
17880             type: TEXT;
17881             mouse_events: 0;
17882             scale: 1;
17883             description { state: "default" 0.0;
17884                min: 0 GENLIST_SIZE_61_INC;
17885                fixed: 0 1;
17886                rel1 {
17887                   relative: 1.0 1.0;
17888                   to_x: "elm.padding.icon.right";
17889                   to_y: "elm.padding.top";
17890                }
17891                rel2 {
17892                   relative: 0.0 1.0;
17893                   to_x: "elm.padding.right";
17894                   to_y: "elm.padding.top";
17895                }
17896                align: 0.0 0.0;
17897                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17898                text {
17899                   font: "SLP:style=Roman";
17900                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17901                   min: 0 1;
17902                   align: 0.0 0.5;
17903                   text_class: "list_item";
17904                }
17905             }
17906             description { state: "selected" 0.0;
17907                inherit: "default" 0.0;
17908                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17909             }
17910             GENLIST_DESCRIPTION_FLIP_ENABLED
17911          }
17912          part { name: "elm.text.2";
17913             clip_to: "disclip";
17914             type: TEXT;
17915             mouse_events: 0;
17916             scale: 1;
17917             description { state: "default" 0.0;
17918                rel1 {
17919                   relative: 1.0 1.0;
17920                   to_x: "elm.padding.icon.right";
17921                   to_y: "elm.text.1";
17922                }
17923                rel2 {
17924                   relative: 0.0 0.0;
17925                   to_x: "elm.padding.right";
17926                   to_y: "elm.padding.bottom";
17927                }
17928                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
17929                text {
17930                   font: "SLP:style=Medium";
17931                   size: GENLIST_FONT_32_INC;
17932                   min: 0 1;
17933                   align: 0.0 0.5;
17934                   text_class: "slp_medium";
17935                }
17936             }
17937             description { state: "selected" 0.0;
17938                inherit: "default" 0.0;
17939                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
17940             }
17941             GENLIST_DESCRIPTION_FLIP_ENABLED
17942          }
17943          GENLIST_PART_FLIP
17944          GENLIST_PART_DISCLIP
17945       }
17946       programs {
17947          // signal: elm,state,%s,active
17948          //   a "check" item named %s went active
17949          // signal: elm,state,%s,passive
17950          //   a "check" item named %s went passive
17951          // default is passive
17952          program { name: "go_active";
17953             signal: "elm,state,selected";
17954             source: "elm";
17955             action: STATE_SET "selected" 0.0;
17956             target: "bg_image";
17957             target: "elm.text.1";
17958             target: "elm.text.2";
17959             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17960          }
17961          program { name: "go_passive";
17962             signal: "elm,state,unselected";
17963             source: "elm";
17964             action: STATE_SET "default" 0.0;
17965             target: "bg_image";
17966             target: "elm.text.1";
17967             target: "elm.text.2";
17968             transition: LINEAR 0.1;
17969          }
17970          program { name: "go_disabled";
17971             signal: "elm,state,disabled";
17972             source: "elm";
17973             action: STATE_SET "disabled" 0.0;
17974             target: "disclip";
17975          }
17976          program { name: "go_enabled";
17977             signal: "elm,state,enabled";
17978             source: "elm";
17979             action: STATE_SET "default" 0.0;
17980             target: "disclip";
17981          }
17982          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
17983          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17984       }
17985    }
17986
17987    group { name: "elm/genlist/item/dialogue/2text.1icon.3/default";
17988       alias: "elm/genlist/item_odd/dialogue/2text.1icon.3/default";
17989       alias: "elm/genlist/item_compress/dialogue/2text.1icon.3/default";
17990       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.3/default";
17991       alias: "elm/layout/dialogue/2text.1icon.3";
17992       data.item: "stacking" "above";
17993       data.item: "selectraise" "on";
17994       data.item: "texts" "elm.text.1 elm.text.2";
17995       data.item: "contents" "elm.icon";
17996       data.item: "flips" "elm.flip.content";
17997       parts {
17998          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17999          GENLIST_PART_DIALOGUE_BG_IMAGE
18000          GENLIST_PART_BOTTOM_LINE
18001          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18002          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18003          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18004          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18005          GENLIST_PART_DIALOGUE_ITEM
18006          GENLIST_PART_DIALOGUE_RIGHT_LINE
18007          part { name: "elm.icon";
18008             clip_to: "disclip";
18009             type: SWALLOW;
18010             scale: 1;
18011             description { state: "default" 0.0;
18012                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18013                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18014                fixed: 1 1;
18015                rel1 {
18016                   relative: 1.0 0.0;
18017                   to_x: "elm.padding.left";
18018                }
18019                rel2.to_x: "elm.padding.left";
18020                align: 0.0 0.5;
18021             }
18022             GENLIST_DESCRIPTION_FLIP_ENABLED
18023          }
18024          part { name: "elm.padding.icon.right";
18025             clip_to: "disclip";
18026             type: RECT;
18027             scale: 1;
18028             description { state: "default" 0.0;
18029                min: GENLIST_PADDING_16_INC 0;
18030                fixed: 1 0;
18031                rel1 {
18032                   relative: 1.0 0.0;
18033                   to_x: "elm.icon";
18034                }
18035                rel2.to_x: "elm.icon";
18036                align: 0.0 0.0;
18037                visible: 0;
18038             }
18039          }
18040          part { name: "elm.text.1";
18041             clip_to: "disclip";
18042             type: TEXT;
18043             mouse_events: 0;
18044             scale: 1;
18045             description { state: "default" 0.0;
18046                min: 0 GENLIST_SIZE_61_INC;
18047                fixed: 0 1;
18048                rel1 {
18049                   relative: 1.0 1.0;
18050                   to_x: "elm.padding.icon.right";
18051                   to_y: "elm.padding.top";
18052                }
18053                rel2 {
18054                   relative: 0.0 1.0;
18055                   to_x: "elm.padding.right";
18056                   to_y: "elm.padding.top";
18057                }
18058                align: 0.0 0.0;
18059                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18060                text {
18061                   font: "SLP:style=Roman";
18062                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18063                   min: 0 1;
18064                   align: 0.0 0.5;
18065                   text_class: "list_item";
18066                }
18067             }
18068             description { state: "selected" 0.0;
18069                inherit: "default" 0.0;
18070                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18071             }
18072             GENLIST_DESCRIPTION_FLIP_ENABLED
18073          }
18074          part { name: "elm.text.2";
18075             clip_to: "disclip";
18076             type: TEXT;
18077             mouse_events: 0;
18078             scale: 1;
18079             description { state: "default" 0.0;
18080                rel1 {
18081                   relative: 1.0 1.0;
18082                   to_x: "elm.padding.icon.right";
18083                   to_y: "elm.text.1";
18084                }
18085                rel2 {
18086                   relative: 0.0 0.0;
18087                   to_x: "elm.padding.right";
18088                   to_y: "elm.padding.bottom";
18089                }
18090                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
18091                text {
18092                   font: "SLP:style=Medium";
18093                   size: GENLIST_FONT_32_INC;
18094                   min: 0 1;
18095                   align: 0.0 0.5;
18096                   text_class: "slp_medium";
18097                }
18098             }
18099             description { state: "selected" 0.0;
18100                inherit: "default" 0.0;
18101                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18102             }
18103             GENLIST_DESCRIPTION_FLIP_ENABLED
18104          }
18105          GENLIST_PART_FLIP
18106          GENLIST_PART_DISCLIP
18107       }
18108       programs {
18109          // signal: elm,state,%s,active
18110          //   a "check" item named %s went active
18111          // signal: elm,state,%s,passive
18112          //   a "check" item named %s went passive
18113          // default is passive
18114          program { name: "go_active";
18115             signal: "elm,state,selected";
18116             source: "elm";
18117             action: STATE_SET "selected" 0.0;
18118             target: "bg_image";
18119             target: "elm.text.1";
18120             target: "elm.text.2";
18121             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18122          }
18123          program { name: "go_passive";
18124             signal: "elm,state,unselected";
18125             source: "elm";
18126             action: STATE_SET "default" 0.0;
18127             target: "bg_image";
18128             target: "elm.text.1";
18129             target: "elm.text.2";
18130             transition: LINEAR 0.1;
18131          }
18132          program { name: "go_disabled";
18133             signal: "elm,state,disabled";
18134             source: "elm";
18135             action: STATE_SET "disabled" 0.0;
18136             target: "disclip";
18137          }
18138          program { name: "go_enabled";
18139             signal: "elm,state,enabled";
18140             source: "elm";
18141             action: STATE_SET "default" 0.0;
18142             target: "disclip";
18143          }
18144          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
18145          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18146       }
18147    }
18148
18149    group { name: "elm/genlist/item/dialogue/2text.3icon/default";
18150       alias: "elm/genlist/item_odd/dialogue/2text.3icon/default";
18151       alias: "elm/genlist/item_compress/dialogue/2text.3icon/default";
18152       alias: "elm/genlist/item_compress_odd/dialogue/2text.3icon/default";
18153       alias: "elm/layout/dialogue/2text.3icon";
18154       data.item: "stacking" "above";
18155       data.item: "selectraise" "on";
18156       data.item: "texts" "elm.text.1 elm.text.2";
18157       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
18158       data.item: "flips" "elm.flip.content";
18159       parts {
18160          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18161          GENLIST_PART_DIALOGUE_BG_IMAGE
18162          GENLIST_PART_BOTTOM_LINE
18163          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18164          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18165          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18166          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18167          GENLIST_PART_DIALOGUE_ITEM
18168          GENLIST_PART_DIALOGUE_RIGHT_LINE
18169          part { name: "elm.swallow.colorbar";
18170             clip_to: "disclip";
18171             type: SWALLOW;
18172             scale: 1;
18173             description { state: "default" 0.0;
18174                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
18175                fixed: 1 1;
18176                rel1 {
18177                   relative: 1.0 0.0;
18178                   to_x: "elm.rect.dialogue";
18179                }
18180                rel2 {
18181                   relative: 1.0 0.0;
18182                   to_x: "elm.rect.dialogue";
18183                }
18184                align: 0.0 0.0;
18185             }
18186          }
18187          part { name: "elm.icon.1";
18188             clip_to: "disclip";
18189             type: SWALLOW;
18190             scale: 1;
18191             description { state: "default" 0.0;
18192                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18193                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18194                fixed: 1 1;
18195                rel1 {
18196                   relative: 1.0 0.0;
18197                   to_x: "elm.padding.left";
18198                }
18199                rel2 {
18200                   relative: 1.0 1.0;
18201                   to_x: "elm.padding.left";
18202                }
18203                align: 0.0 0.5;
18204             }
18205             GENLIST_DESCRIPTION_FLIP_ENABLED
18206          }
18207          part { name: "elm.padding.icon1.right";
18208             type: RECT;
18209             scale: 1;
18210             description { state: "default" 0.0;
18211                min: GENLIST_PADDING_16_INC 0;
18212                fixed: 1 0;
18213                rel1 {
18214                   relative: 1.0 0.0;
18215                   to_x: "elm.icon.1";
18216                }
18217                rel2.to_x: "elm.icon.1";
18218                align: 0.0 0.0;
18219                visible: 0;
18220             }
18221          }
18222          part { name: "elm.icon.2";
18223             clip_to: "disclip";
18224             type: SWALLOW;
18225             scale: 1;
18226             description { state: "default" 0.0;
18227                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18228                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18229                fixed: 1 1;
18230                rel1.to_x: "elm.padding.right";
18231                rel2 {
18232                   relative: 0.0 1.0;
18233                   to_x: "elm.padding.right";
18234                }
18235                align: 1.0 0.5;
18236             }
18237             GENLIST_DESCRIPTION_FLIP_ENABLED
18238          }
18239          part { name: "elm.padding.icon2.left";
18240             type: RECT;
18241             scale: 1;
18242             description { state: "default" 0.0;
18243                min: GENLIST_PADDING_16_INC 0;
18244                fixed: 1 0;
18245                rel1.to_x: "elm.icon.2";
18246                rel2 {
18247                   relative: 0.0 1.0;
18248                   to_x: "elm.icon.2";
18249                }
18250                align: 1.0 0.0;
18251                visible: 0;
18252             }
18253          }
18254          part { name: "elm.text.1";
18255             clip_to: "disclip";
18256             type: TEXT;
18257             mouse_events: 0;
18258             scale: 1;
18259             description { state: "default" 0.0;
18260                min: 0 GENLIST_SIZE_61_INC;
18261                fixed: 0 1;
18262                rel1 {
18263                   relative: 1.0 1.0;
18264                   to_x: "elm.padding.icon1.right";
18265                   to_y: "elm.padding.top";
18266                }
18267                rel2 {
18268                   relative: 0.0 1.0;
18269                   to_x: "elm.padding.icon2.left";
18270                   to_y: "elm.padding.top";
18271                }
18272                align: 0.0 0.0;
18273                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18274                text {
18275                   font: "SLP:style=Roman";
18276                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18277                   min: 0 1;
18278                   align: 0.0 0.5;
18279                   text_class: "list_item";
18280                }
18281             }
18282             description { state: "selected" 0.0;
18283                inherit: "default" 0.0;
18284                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18285             }
18286             GENLIST_DESCRIPTION_FLIP_ENABLED
18287          }
18288          part { name: "elm.text.2";
18289             clip_to: "disclip";
18290             type: TEXT;
18291             mouse_events: 0;
18292             scale: 1;
18293             description { state: "default" 0.0;
18294                rel1 {
18295                   relative: 1.0 1.0;
18296                   to_x: "elm.padding.icon1.right";
18297                   to_y: "elm.text.1";
18298                }
18299                rel2 {
18300                   relative: 0.0 0.0;
18301                   to_x: "elm.padding.icon2.left";
18302                   to_y: "elm.padding.bottom";
18303                }
18304                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
18305                text {
18306                   font: "SLP:style=Medium";
18307                   size: GENLIST_FONT_32_INC;
18308                   min: 0 1;
18309                   align: 0.0 0.5;
18310                   text_class: "slp_medium";
18311                }
18312             }
18313             description { state: "selected" 0.0;
18314                inherit: "default" 0.0;
18315                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18316             }
18317             GENLIST_DESCRIPTION_FLIP_ENABLED
18318          }
18319          GENLIST_PART_FLIP
18320          GENLIST_PART_DISCLIP
18321       }
18322       programs {
18323          // signal: elm,state,%s,active
18324          //   a "check" item named %s went active
18325          // signal: elm,state,%s,passive
18326          //   a "check" item named %s went passive
18327          // default is passive
18328          program { name: "go_active";
18329             signal: "elm,state,selected";
18330             source: "elm";
18331             action: STATE_SET "selected" 0.0;
18332             target: "bg_image";
18333             target: "elm.text.1";
18334             target: "elm.text.2";
18335             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18336          }
18337          program { name: "go_passive";
18338             signal: "elm,state,unselected";
18339             source: "elm";
18340             action: STATE_SET "default" 0.0;
18341             target: "bg_image";
18342             target: "elm.text.1";
18343             target: "elm.text.2";
18344             transition: LINEAR 0.1;
18345          }
18346          program { name: "go_disabled";
18347             signal: "elm,state,disabled";
18348             source: "elm";
18349             action: STATE_SET "disabled" 0.0;
18350             target: "disclip";
18351          }
18352          program { name: "go_enabled";
18353             signal: "elm,state,enabled";
18354             source: "elm";
18355             action: STATE_SET "default" 0.0;
18356             target: "disclip";
18357          }
18358          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18359          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18360       }
18361    }
18362
18363    group { name: "elm/genlist/item/dialogue/2text.2icon/default";
18364       alias: "elm/genlist/item_odd/dialogue/2text.2icon/default";
18365       alias: "elm/genlist/item_compress/dialogue/2text.2icon/default";
18366       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon/default";
18367       alias: "elm/layout/dialogue/2text.2icon";
18368       data.item: "stacking" "above";
18369       data.item: "selectraise" "on";
18370       data.item: "texts" "elm.text.1 elm.text.2";
18371       data.item: "contents" "elm.icon.1 elm.icon.2";
18372       data.item: "flips" "elm.flip.content";
18373       parts {
18374          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18375          GENLIST_PART_DIALOGUE_BG_IMAGE
18376          GENLIST_PART_BOTTOM_LINE
18377          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18378          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18379          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18380          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18381          GENLIST_PART_DIALOGUE_ITEM
18382          GENLIST_PART_DIALOGUE_RIGHT_LINE
18383          part { name: "elm.icon.1";
18384             clip_to: "disclip";
18385             type: SWALLOW;
18386             scale: 1;
18387             description { state: "default" 0.0;
18388                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
18389                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
18390                fixed: 1 1;
18391                rel1 {
18392                   relative: 1.0 1.0;
18393                   to_x: "elm.padding.left";
18394                   to_y: "elm.padding.top";
18395                }
18396                rel2 {
18397                   relative: 1.0 0.0;
18398                   to_x: "elm.padding.left";
18399                   to_y: "elm.padding.bottom";
18400                }
18401                align: 0.0 0.5;
18402             }
18403             GENLIST_DESCRIPTION_FLIP_ENABLED
18404          }
18405          part { name: "elm.padding.icon1.right";
18406             clip_to: "disclip";
18407             type: RECT;
18408             scale: 1;
18409             description { state: "default" 0.0;
18410                min: GENLIST_PADDING_16_INC 0;
18411                fixed: 1 0;
18412                rel1 {
18413                   relative: 1.0 0.0;
18414                   to_x: "elm.icon.1";
18415                }
18416                rel2.to_x: "elm.icon.1";
18417                align: 0.0 0.0;
18418                visible: 0;
18419             }
18420          }
18421          part { name: "elm.icon.2";
18422             clip_to: "disclip";
18423             type: SWALLOW;
18424             scale: 1;
18425             description { state: "default" 0.0;
18426                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18427                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18428                fixed: 1 1;
18429                rel1 {
18430                   relative: 1.0 1.0;
18431                   to_x: "elm.padding.icon1.right";
18432                   to_y: "elm.padding.top";
18433                }
18434                rel2 {
18435                   relative: 1.0 0.0;
18436                   to_x: "elm.padding.icon1.right";
18437                   to_y: "elm.padding.bottom";
18438                }
18439                align: 0.0 0.5;
18440             }
18441             GENLIST_DESCRIPTION_FLIP_ENABLED
18442          }
18443          part { name: "elm.padding.icon2.right";
18444             clip_to: "disclip";
18445             type: RECT;
18446             scale: 1;
18447             description { state: "default" 0.0;
18448                min: GENLIST_PADDING_16_INC 0;
18449                fixed: 1 0;
18450                rel1 {
18451                   relative: 1.0 0.0;
18452                   to_x: "elm.icon.2";
18453                }
18454                rel2.to_x: "elm.icon.2";
18455                align: 0.0 0.0;
18456                visible: 0;
18457             }
18458          }
18459          part { name: "elm.text.1";
18460             clip_to: "disclip";
18461             type: TEXT;
18462             mouse_events: 0;
18463             scale: 1;
18464             description { state: "default" 0.0;
18465                min: 0 GENLIST_SIZE_61_INC;
18466                fixed: 0 1;
18467                rel1 {
18468                   relative: 1.0 1.0;
18469                   to_x: "elm.padding.icon2.right";
18470                   to_y: "elm.padding.top";
18471                }
18472                rel2 {
18473                   relative: 0.0 1.0;
18474                   to_x: "elm.padding.right";
18475                   to_y: "elm.padding.top";
18476                }
18477                align: 0.0 0.0;
18478                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18479                text {
18480                   font: "SLP:style=Roman";
18481                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18482                   min: 0 1;
18483                   align: 0.0 0.5;
18484                   text_class: "list_item";
18485                }
18486             }
18487             description { state: "selected" 0.0;
18488                inherit: "default" 0.0;
18489                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18490             }
18491             GENLIST_DESCRIPTION_FLIP_ENABLED
18492          }
18493          part { name: "elm.text.2";
18494             clip_to: "disclip";
18495             type: TEXT;
18496             mouse_events: 0;
18497             scale: 1;
18498             description { state: "default" 0.0;
18499                rel1 {
18500                   relative: 1.0 1.0;
18501                   to_x: "elm.padding.icon2.right";
18502                   to_y: "elm.text.1";
18503                }
18504                rel2 {
18505                   relative: 0.0 0.0;
18506                   to_x: "elm.padding.right";
18507                   to_y: "elm.padding.bottom";
18508                }
18509                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
18510                text {
18511                   font: "SLP:style=Medium";
18512                   size: GENLIST_FONT_32_INC;
18513                   min: 0 1;
18514                   align: 0.0 0.5;
18515                   text_class: "slp_medium";
18516                }
18517             }
18518             description { state: "selected" 0.0;
18519                inherit: "default" 0.0;
18520                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
18521             }
18522             GENLIST_DESCRIPTION_FLIP_ENABLED
18523          }
18524          GENLIST_PART_FLIP
18525          GENLIST_PART_DISCLIP
18526       }
18527       programs {
18528          // signal: elm,state,%s,active
18529          //   a "check" item named %s went active
18530          // signal: elm,state,%s,passive
18531          //   a "check" item named %s went passive
18532          // default is passive
18533          program { name: "go_active";
18534             signal: "elm,state,selected";
18535             source: "elm";
18536             action: STATE_SET "selected" 0.0;
18537             target: "bg_image";
18538             target: "elm.text.1";
18539             target: "elm.text.2";
18540             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18541          }
18542          program { name: "go_passive";
18543             signal: "elm,state,unselected";
18544             source: "elm";
18545             action: STATE_SET "default" 0.0;
18546             target: "bg_image";
18547             target: "elm.text.1";
18548             target: "elm.text.2";
18549             transition: LINEAR 0.1;
18550          }
18551          program { name: "go_disabled";
18552             signal: "elm,state,disabled";
18553             source: "elm";
18554             action: STATE_SET "disabled" 0.0;
18555             target: "disclip";
18556          }
18557          program { name: "go_enabled";
18558             signal: "elm,state,enabled";
18559             source: "elm";
18560             action: STATE_SET "default" 0.0;
18561             target: "disclip";
18562          }
18563          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18564          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18565       }
18566    }
18567
18568    group { name: "elm/genlist/item/dialogue/2text.2icon.2/default";
18569       alias: "elm/genlist/item_odd/dialogue/2text.2icon.2/default";
18570       alias: "elm/genlist/item_compress/dialogue/2text.2icon.2/default";
18571       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.2/default";
18572       alias: "elm/layout/dialogue/2text.2icon.2";
18573       data.item: "stacking" "above";
18574       data.item: "selectraise" "on";
18575       data.item: "texts" "elm.text.1 elm.text.2";
18576       data.item: "contents" "elm.icon.1 elm.icon.2";
18577       data.item: "flips" "elm.flip.content";
18578       parts {
18579          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18580          GENLIST_PART_DIALOGUE_BG_IMAGE
18581          GENLIST_PART_BOTTOM_LINE
18582          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18583          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18584          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18585          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18586          GENLIST_PART_DIALOGUE_ITEM
18587          GENLIST_PART_DIALOGUE_RIGHT_LINE
18588          part { name: "elm.icon.1";
18589             clip_to: "disclip";
18590             type: SWALLOW;
18591             scale: 1;
18592             description { state: "default" 0.0;
18593                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18594                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18595                fixed: 1 1;
18596                rel1 {
18597                   relative: 1.0 1.0;
18598                   to_x: "elm.padding.left";
18599                   to_y: "elm.padding.top";
18600                }
18601                rel2 {
18602                   relative: 1.0 0.0;
18603                   to_x: "elm.padding.left";
18604                   to_y: "elm.padding.bottom";
18605                }
18606                align: 0.0 0.5;
18607             }
18608             GENLIST_DESCRIPTION_FLIP_ENABLED
18609          }
18610          part { name: "elm.padding.icon1.right";
18611             clip_to: "disclip";
18612             type: RECT;
18613             scale: 1;
18614             description { state: "default" 0.0;
18615                min: GENLIST_PADDING_16_INC 0;
18616                fixed: 1 0;
18617                rel1 {
18618                   relative: 1.0 0.0;
18619                   to_x: "elm.icon.1";
18620                }
18621                rel2.to_x: "elm.icon.1";
18622                align: 0.0 0.0;
18623                visible: 0;
18624             }
18625          }
18626          part { name: "elm.text.1";
18627             clip_to: "disclip";
18628             type: TEXT;
18629             mouse_events: 0;
18630             scale: 1;
18631             description { state: "default" 0.0;
18632                min: 0 GENLIST_SIZE_61_INC;
18633                fixed: 0 1;
18634                rel1 {
18635                   relative: 1.0 1.0;
18636                   to_x: "elm.padding.icon1.right";
18637                   to_y: "elm.padding.top";
18638                }
18639                rel2 {
18640                   relative: 0.0 1.0;
18641                   to_x: "elm.padding.right";
18642                   to_y: "elm.padding.top";
18643                }
18644                align: 0.0 0.0;
18645                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18646                text {
18647                   font: "SLP:style=Roman";
18648                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18649                   min: 0 1;
18650                   align: 0.0 0.5;
18651                   text_class: "list_item";
18652                }
18653             }
18654             description { state: "selected" 0.0;
18655                inherit: "default" 0.0;
18656                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18657             }
18658             GENLIST_DESCRIPTION_FLIP_ENABLED
18659          }
18660          part { name: "elm.icon.2";
18661             clip_to: "disclip";
18662             type: SWALLOW;
18663             scale: 1;
18664             description { state: "default" 0.0;
18665                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
18666                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
18667                fixed: 1 1;
18668                rel1 {
18669                   relative: 0.0 1.0;
18670                   to_x: "elm.padding.right";
18671                   to_y: "elm.text.1";
18672                }
18673                rel2 {
18674                   relative: 0.0 0.0;
18675                   to_x: "elm.padding.right";
18676                   to_y: "elm.padding.bottom";
18677                }
18678                align: 1.0 0.5;
18679             }
18680             GENLIST_DESCRIPTION_FLIP_ENABLED
18681          }
18682          part { name: "elm.padding.icon2.left";
18683             clip_to: "disclip";
18684             type: RECT;
18685             scale: 1;
18686             description { state: "default" 0.0;
18687                min: GENLIST_PADDING_16_INC 0;
18688                fixed: 1 0;
18689                rel1 {
18690                   relative: 0.0 0.0;
18691                   to_x: "elm.icon.2";
18692                }
18693                rel2.to_x: "elm.icon.2";
18694                align: 1.0 0.0;
18695                visible: 0;
18696             }
18697          }
18698          part { name: "elm.text.2";
18699             clip_to: "disclip";
18700             type: TEXT;
18701             mouse_events: 0;
18702             scale: 1;
18703             description { state: "default" 0.0;
18704                rel1 {
18705                   relative: 1.0 1.0;
18706                   to_x: "elm.padding.icon1.right";
18707                   to_y: "elm.text.1";
18708                }
18709                rel2 {
18710                   relative: 0.0 0.0;
18711                   to_x: "elm.padding.icon2.left";
18712                   to_y: "elm.padding.bottom";
18713                }
18714                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
18715                text {
18716                   font: "SLP:style=Medium";
18717                   size: GENLIST_FONT_32_INC;
18718                   min: 0 1;
18719                   align: 0.0 0.5;
18720                   text_class: "slp_medium";
18721                }
18722             }
18723             description { state: "selected" 0.0;
18724                inherit: "default" 0.0;
18725                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
18726             }
18727             GENLIST_DESCRIPTION_FLIP_ENABLED
18728          }
18729          GENLIST_PART_FLIP
18730          GENLIST_PART_DISCLIP
18731       }
18732       programs {
18733          // signal: elm,state,%s,active
18734          //   a "check" item named %s went active
18735          // signal: elm,state,%s,passive
18736          //   a "check" item named %s went passive
18737          // default is passive
18738          program { name: "go_active";
18739             signal: "elm,state,selected";
18740             source: "elm";
18741             action: STATE_SET "selected" 0.0;
18742             target: "bg_image";
18743             target: "elm.text.1";
18744             target: "elm.text.2";
18745             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18746          }
18747          program { name: "go_passive";
18748             signal: "elm,state,unselected";
18749             source: "elm";
18750             action: STATE_SET "default" 0.0;
18751             target: "bg_image";
18752             target: "elm.text.1";
18753             target: "elm.text.2";
18754             transition: LINEAR 0.1;
18755          }
18756          program { name: "go_disabled";
18757             signal: "elm,state,disabled";
18758             source: "elm";
18759             action: STATE_SET "disabled" 0.0;
18760             target: "disclip";
18761          }
18762          program { name: "go_enabled";
18763             signal: "elm,state,enabled";
18764             source: "elm";
18765             action: STATE_SET "default" 0.0;
18766             target: "disclip";
18767          }
18768          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18769          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18770       }
18771    }
18772
18773    group { name: "elm/genlist/item/dialogue/2text.2icon.3/default";
18774       alias: "elm/genlist/item_odd/dialogue/2text.2icon.3/default";
18775       alias: "elm/genlist/item_compress/dialogue/2text.2icon.3/default";
18776       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.3/default";
18777       alias: "elm/layout/dialogue/2text.2icon.3";
18778       data.item: "stacking" "above";
18779       data.item: "selectraise" "on";
18780       data.item: "texts" "elm.text.1 elm.text.2";
18781       data.item: "contents" "elm.icon.1 elm.icon.2";
18782       data.item: "flips" "elm.flip.content";
18783       parts {
18784          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18785          GENLIST_PART_DIALOGUE_BG_IMAGE
18786          GENLIST_PART_BOTTOM_LINE
18787          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18788          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18789          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18790          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18791          GENLIST_PART_DIALOGUE_ITEM
18792          GENLIST_PART_DIALOGUE_RIGHT_LINE
18793          part { name: "elm.icon.1";
18794             clip_to: "disclip";
18795             type: SWALLOW;
18796             scale: 1;
18797             description { state: "default" 0.0;
18798                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18799                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18800                fixed: 1 1;
18801                rel1 {
18802                   relative: 1.0 1.0;
18803                   to_x: "elm.padding.left";
18804                   to_y: "elm.padding.top";
18805                }
18806                rel2 {
18807                   relative: 1.0 0.0;
18808                   to_x: "elm.padding.left";
18809                   to_y: "elm.padding.bottom";
18810                }
18811                align: 0.0 0.5;
18812             }
18813             GENLIST_DESCRIPTION_FLIP_ENABLED
18814          }
18815          part { name: "elm.padding.icon1.right";
18816             clip_to: "disclip";
18817             type: RECT;
18818             scale: 1;
18819             description { state: "default" 0.0;
18820                min: GENLIST_PADDING_16_INC 0;
18821                fixed: 1 0;
18822                rel1 {
18823                   relative: 1.0 0.0;
18824                   to_x: "elm.icon.1";
18825                }
18826                rel2.to_x: "elm.icon.1";
18827                align: 0.0 0.0;
18828                visible: 0;
18829             }
18830          }
18831          part { name: "elm.icon.2";
18832             clip_to: "disclip";
18833             type: SWALLOW;
18834             scale: 1;
18835             description { state: "default" 0.0;
18836                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18837                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18838                fixed: 1 1;
18839                rel1 {
18840                   relative: 0.0 1.0;
18841                   to_x: "elm.padding.right";
18842                   to_y: "elm.padding.top";
18843                }
18844                rel2 {
18845                   relative: 0.0 0.0;
18846                   to_x: "elm.padding.right";
18847                   to_y: "elm.padding.bottom";
18848                }
18849                align: 1.0 0.5;
18850             }
18851             GENLIST_DESCRIPTION_FLIP_ENABLED
18852          }
18853          part { name: "elm.padding.icon2.left";
18854             clip_to: "disclip";
18855             type: RECT;
18856             scale: 1;
18857             description { state: "default" 0.0;
18858                min: GENLIST_PADDING_16_INC 0;
18859                fixed: 1 0;
18860                rel1.to_x: "elm.icon.2";
18861                rel2 {
18862                   relative: 0.0 1.0;
18863                   to_x: "elm.icon.2";
18864                }
18865                align: 1.0 0.0;
18866                visible: 0;
18867             }
18868          }
18869          part { name: "elm.text.1";
18870             clip_to: "disclip";
18871             type: TEXT;
18872             mouse_events: 0;
18873             scale: 1;
18874             description { state: "default" 0.0;
18875                min: 0 GENLIST_SIZE_61_INC;
18876                fixed: 0 1;
18877                rel1 {
18878                   relative: 1.0 1.0;
18879                   to_x: "elm.padding.icon1.right";
18880                   to_y: "elm.padding.top";
18881                }
18882                rel2 {
18883                   relative: 0.0 1.0;
18884                   to_x: "elm.padding.icon2.left";
18885                   to_y: "elm.padding.top";
18886                }
18887                align: 0.0 0.0;
18888                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18889                text {
18890                   font: "SLP:style=Roman";
18891                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18892                   min: 0 1;
18893                   align: 0.0 0.5;
18894                   text_class: "list_item";
18895                }
18896             }
18897             description { state: "selected" 0.0;
18898                inherit: "default" 0.0;
18899                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18900             }
18901             GENLIST_DESCRIPTION_FLIP_ENABLED
18902          }
18903          part { name: "elm.text.2";
18904             clip_to: "disclip";
18905             type: TEXT;
18906             mouse_events: 0;
18907             scale: 1;
18908             description { state: "default" 0.0;
18909                rel1 {
18910                   relative: 1.0 1.0;
18911                   to_x: "elm.padding.icon1.right";
18912                   to_y: "elm.text.1";
18913                }
18914                rel2 {
18915                   relative: 0.0 0.0;
18916                   to_x: "elm.padding.icon2.left";
18917                   to_y: "elm.padding.bottom";
18918                }
18919                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
18920                text {
18921                   font: "SLP:style=Medium";
18922                   size: GENLIST_FONT_32_INC;
18923                   min: 0 1;
18924                   align: 0.0 0.5;
18925                   text_class: "slp_medium";
18926                }
18927             }
18928             description { state: "selected" 0.0;
18929                inherit: "default" 0.0;
18930                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
18931             }
18932             GENLIST_DESCRIPTION_FLIP_ENABLED
18933          }
18934          GENLIST_PART_FLIP
18935          GENLIST_PART_DISCLIP
18936       }
18937       programs {
18938          // signal: elm,state,%s,active
18939          //   a "check" item named %s went active
18940          // signal: elm,state,%s,passive
18941          //   a "check" item named %s went passive
18942          // default is passive
18943          program { name: "go_active";
18944             signal: "elm,state,selected";
18945             source: "elm";
18946             action: STATE_SET "selected" 0.0;
18947             target: "bg_image";
18948             target: "elm.text.1";
18949             target: "elm.text.2";
18950             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18951          }
18952          program { name: "go_passive";
18953             signal: "elm,state,unselected";
18954             source: "elm";
18955             action: STATE_SET "default" 0.0;
18956             target: "bg_image";
18957             target: "elm.text.1";
18958             target: "elm.text.2";
18959             transition: LINEAR 0.1;
18960          }
18961          program { name: "go_disabled";
18962             signal: "elm,state,disabled";
18963             source: "elm";
18964             action: STATE_SET "disabled" 0.0;
18965             target: "disclip";
18966          }
18967          program { name: "go_enabled";
18968             signal: "elm,state,enabled";
18969             source: "elm";
18970             action: STATE_SET "default" 0.0;
18971             target: "disclip";
18972          }
18973          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18974          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18975       }
18976    }
18977
18978    group { name: "elm/genlist/item_compress/dialogue/2text.2icon.3.tb/default";
18979       inherit: "elm/genlist/item/dialogue/2text.2icon.3/default";
18980       parts {
18981          part { name: "elm.text.1";
18982             clip_to: "disclip";
18983             type: TEXTBLOCK;
18984             mouse_events: 0;
18985             scale: 1;
18986             description { state: "default" 0.0;
18987                min: 0 GENLIST_SIZE_61_INC;
18988                fixed: 0 1;
18989                align: 0.0 0.0;
18990                rel1 {
18991                   relative: 1.0 1.0;
18992                   to_x: "elm.padding.icon1.right";
18993                   to_y: "elm.padding.top";
18994                }
18995                rel2 {
18996                   relative: 0.0 1.0;
18997                   to_x: "elm.padding.icon2.left";
18998                   to_y: "elm.padding.top";
18999                }
19000                text {
19001                   style: "genlist_style_list_sub_text_default";
19002                   min: 0 1;
19003                   align: 0.0 0.5;
19004                   text_class: "list_item";
19005                }
19006             }
19007             description { state: "selected" 0.0;
19008                inherit: "default" 0.0;
19009                // FIXME: Why color textblock of is not changed by text.style?
19010                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19011                text.style: "genlist_style_list_sub_text_focus";
19012             }
19013             GENLIST_DESCRIPTION_FLIP_ENABLED
19014
19015          }
19016          part { name: "elm.text.2";
19017             clip_to: "disclip";
19018             type: TEXTBLOCK;
19019             mouse_events: 0;
19020             scale: 1;
19021             description { state: "default" 0.0;
19022                rel1 {
19023                   relative: 1.0 1.0;
19024                   to_x: "elm.padding.icon1.right";
19025                   to_y: "elm.text.1";
19026                }
19027                rel2 {
19028                   relative: 0.0 0.0;
19029                   to_x: "elm.padding.icon2.left";
19030                   to_y: "elm.padding.bottom";
19031                }
19032                text {
19033                   style: "genlist_style_list_main_text_unread";
19034                   min: 0 1;
19035                   align: 0.0 0.5;
19036                   text_class: "slp_medium";
19037                }
19038             }
19039             description { state: "selected" 0.0;
19040                inherit: "default" 0.0;
19041                // FIXME: Why color textblock of is not changed by text.style?
19042                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
19043                text.style: "genlist_style_list_main_text_focus";
19044             }
19045             GENLIST_DESCRIPTION_FLIP_ENABLED
19046          }
19047       }
19048    }
19049
19050    group { name: "elm/genlist/item/dialogue/2text.1icon.5/default";
19051       alias: "elm/genlist/item_odd/dialogue/2text.1icon.5/default";
19052       alias: "elm/genlist/item_compress/dialogue/2text.1icon.5/default";
19053       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.5/default";
19054       alias: "elm/layout/dialogue/2text.1icon.5";
19055       data.item: "stacking" "above";
19056       data.item: "selectraise" "on";
19057       data.item: "texts" "elm.text.1 elm.text.2";
19058       data.item: "contents" "elm.icon";
19059       data.item: "flips" "elm.flip.content";
19060       parts {
19061          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19062          GENLIST_PART_DIALOGUE_BG_IMAGE
19063          GENLIST_PART_BOTTOM_LINE
19064          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19065          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19066          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19067          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19068          GENLIST_PART_DIALOGUE_ITEM
19069          GENLIST_PART_DIALOGUE_RIGHT_LINE
19070          part { name: "elm.icon";
19071             clip_to: "disclip";
19072             type: SWALLOW;
19073             scale: 1;
19074             description { state: "default" 0.0;
19075                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19076                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19077                fixed: 1 1;
19078                rel1 {
19079                   relative: 0.0 1.0;
19080                   to_x: "elm.padding.right";
19081                   to_y: "elm.padding.top";
19082                }
19083                rel2 {
19084                   relative: 0.0 0.0;
19085                   to_x: "elm.padding.right";
19086                   to_y: "elm.padding.bottom";
19087                }
19088                align: 1.0 0.5;
19089             }
19090             GENLIST_DESCRIPTION_FLIP_ENABLED
19091          }
19092          part { name: "elm.padding.icon.left";
19093             clip_to: "disclip";
19094             type: RECT;
19095             scale: 1;
19096             description { state: "default" 0.0;
19097                min: GENLIST_PADDING_16_INC 0;
19098                fixed: 1 0;
19099                rel1.to_x: "elm.icon";
19100                rel2 {
19101                   relative: 0.0 1.0;
19102                   to_x: "elm.icon";
19103                }
19104                align: 1.0 0.0;
19105                visible: 0;
19106             }
19107          }
19108          part { name: "elm.text.1";
19109             clip_to: "disclip";
19110             type: TEXT;
19111             mouse_events: 0;
19112             scale: 1;
19113             description { state: "default" 0.0;
19114                min: 0 GENLIST_SIZE_61_INC;
19115                fixed: 0 1;
19116                rel1 {
19117                   relative: 1.0 0.0;
19118                   to_x: "elm.padding.left";
19119                   to_y: "elm.padding.bottom";
19120                }
19121                rel2 {
19122                   relative: 0.0 0.0;
19123                   to_x: "elm.padding.icon.left";
19124                   to_y: "elm.padding.bottom";
19125                }
19126                align: 0.0 1.0;
19127                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19128                text {
19129                   font: "SLP:style=Roman";
19130                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19131                   min: 0 1;
19132                   align: 0.0 0.5;
19133                   text_class: "list_item";
19134                }
19135             }
19136             description { state: "selected" 0.0;
19137                inherit: "default" 0.0;
19138                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
19139             }
19140             GENLIST_DESCRIPTION_FLIP_ENABLED
19141          }
19142          part { name: "elm.text.2";
19143             clip_to: "disclip";
19144             type: TEXT;
19145             mouse_events: 0;
19146             scale: 1;
19147             description { state: "default" 0.0;
19148                rel1 {
19149                   relative: 1.0 1.0;
19150                   to_x: "elm.padding.left";
19151                   to_y: "elm.padding.top";
19152                }
19153                rel2 {
19154                   relative: 0.0 0.0;
19155                   to_x: "elm.padding.icon.left";
19156                   to_y: "elm.text.1";
19157                }
19158                align: 0.0 0.0;
19159                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
19160                text {
19161                   font: "SLP:style=Medium";
19162                   size: GENLIST_FONT_32_INC;
19163                   min: 0 1;
19164                   align: 0.0 0.5;
19165                   text_class: "slp_roman";
19166                }
19167             }
19168             description { state: "selected" 0.0;
19169                inherit: "default" 0.0;
19170                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19171             }
19172             GENLIST_DESCRIPTION_FLIP_ENABLED
19173          }
19174          GENLIST_PART_FLIP
19175          GENLIST_PART_DISCLIP
19176       }
19177       programs {
19178          // signal: elm,state,%s,active
19179          //   a "check" item named %s went active
19180          // signal: elm,state,%s,passive
19181          //   a "check" item named %s went passive
19182          // default is passive
19183          program { name: "go_active";
19184             signal: "elm,state,selected";
19185             source: "elm";
19186             action: STATE_SET "selected" 0.0;
19187             target: "bg_image";
19188             target: "elm.text.1";
19189             target: "elm.text.2";
19190             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19191          }
19192          program { name: "go_passive";
19193             signal: "elm,state,unselected";
19194             source: "elm";
19195             action: STATE_SET "default" 0.0;
19196             target: "bg_image";
19197             target: "elm.text.1";
19198             target: "elm.text.2";
19199             transition: LINEAR 0.1;
19200          }
19201          program { name: "go_disabled";
19202             signal: "elm,state,disabled";
19203             source: "elm";
19204             action: STATE_SET "disabled" 0.0;
19205             target: "disclip";
19206          }
19207          program { name: "go_enabled";
19208             signal: "elm,state,enabled";
19209             source: "elm";
19210             action: STATE_SET "default" 0.0;
19211             target: "disclip";
19212          }
19213          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
19214          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19215       }
19216    }
19217
19218 // 4.2.11
19219    group { name: "elm/genlist/item_compress/dialogue/1title.1text.2/default";
19220       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.2/default";
19221       alias: "elm/layout/dialogue/1title.1text.2";
19222       data.item: "stacking" "above";
19223       data.item: "selectraise" "on";
19224       data.item: "texts" "elm.title elm.text";
19225       parts {
19226          part { name: "base";
19227             type: RECT;
19228             repeat_events: 1;
19229             description { state: "default" 0.0;
19230                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
19231             }
19232          }
19233          GENLIST_PART_DIALOGUE_BG_IMAGE
19234          GENLIST_PART_BOTTOM_LINE
19235          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_21_INC )
19236          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
19237          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
19238          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19239          GENLIST_PART_DIALOGUE_ITEM
19240          GENLIST_PART_DIALOGUE_RIGHT_LINE
19241          part { name: "elm.title";
19242             clip_to: "disclip";
19243             type: TEXT;
19244             mouse_events: 0;
19245             scale: 1;
19246             description { state: "default" 0.0;
19247                min: GENLIST_SIZE_163_INC 0;
19248                fixed: 1 0;
19249                rel1 {
19250                   relative: 1.0 0.0;
19251                   to_x: "elm.padding.left";
19252                }
19253                rel2 {
19254                   relative: 1.0 1.0;
19255                   to_x: "elm.padding.left";
19256                }
19257                align: 0.0 0.0;
19258                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
19259                text {
19260                   font: "SLP:style=Medium";
19261                   size: GENLIST_LIST_SUB_TEXT_SIZE;
19262                   min: 0 1;
19263                   align: 0.0 0.5;
19264                   text_class: "slp_medium";
19265                }
19266             }
19267             description { state: "selected" 0.0;
19268                inherit: "default" 0.0;
19269                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19270             }
19271          }
19272          part { name: "vertical_line";
19273             clip_to: "disclip";
19274             type: RECT;
19275             mouse_events: 0;
19276             description { state: "default" 0.0;
19277                min: 1 0;
19278                fixed: 1 0;
19279                rel1 {
19280                   relative: 1.0 0.0;
19281                   to_x: "elm.title";
19282                }
19283                rel2.to_x: "elm.title";
19284                align: 0.0 0.5;
19285                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19286             }
19287          }
19288          part { name: "elm.padding.text.left";
19289             clip_to: "disclip";
19290             type: RECT;
19291             mouse_events: 0;
19292             description { state: "default" 0.0;
19293                min: GENLIST_PADDING_16_INC 0;
19294                fixed: 1 0;
19295                rel1 {
19296                   relative: 1.0 0.0;
19297                   to_x: "vertical_line";
19298                }
19299                rel2.to_x: "vertical_line";
19300                align: 0.0 0.5;
19301                visible: 0;
19302             }
19303          }
19304          part { name: "elm.text";
19305             clip_to: "disclip";
19306             type: TEXTBLOCK;
19307             mouse_events: 0;
19308             scale: 1;
19309             description { state: "default" 0.0;
19310                rel1 {
19311                   relative: 1.0 1.0;
19312                   to_x: "elm.padding.text.left";
19313                   to_y: "elm.padding.top";
19314                }
19315                rel2 {
19316                   relative: 0.0 0.0;
19317                   to_x: "elm.padding.right";
19318                   to_y: "elm.padding.bottom";
19319                }
19320                text {
19321                   style: "genlist_style_multiline_list_main_text_unread";
19322                   min: 0 1;
19323                   align: 0.0 0.5;
19324                }
19325             }
19326             description { state: "selected" 0.0;
19327                inherit: "default" 0.0;
19328                text.style: "genlist_style_multiline_list_main_text_focus";
19329             }
19330          }
19331          GENLIST_PART_DISCLIP
19332       }
19333       programs {
19334          // signal: elm,state,%s,active
19335          //   a "check" item named %s went active
19336          // signal: elm,state,%s,passive
19337          //   a "check" item named %s went passive
19338          // default is passive
19339          program { name: "go_active";
19340             signal: "elm,state,selected";
19341             source: "elm";
19342             action: STATE_SET "selected" 0.0;
19343             target: "bg_image";
19344             target: "elm.title";
19345             target: "elm.text";
19346             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19347          }
19348          program { name: "go_passive";
19349             signal: "elm,state,unselected";
19350             source: "elm";
19351             action: STATE_SET "default" 0.0;
19352             target: "bg_image";
19353             target: "elm.title";
19354             target: "elm.text";
19355             transition: LINEAR 0.1;
19356          }
19357          program { name: "go_disabled";
19358             signal: "elm,state,disabled";
19359             source: "elm";
19360             action: STATE_SET "disabled" 0.0;
19361             target: "disclip";
19362          }
19363          program { name: "go_enabled";
19364             signal: "elm,state,enabled";
19365             source: "elm";
19366             action: STATE_SET "default" 0.0;
19367             target: "disclip";
19368          }
19369          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19370       }
19371    }
19372
19373 /*   group { name: "elm/genlist/item/dialogue/1title.2text/default";
19374       alias: "elm/genlist/item_odd/dialogue/1title.2text/default";
19375       alias: "elm/genlist/item_compress/dialogue/1title.2text/default";
19376       alias: "elm/genlist/item_compress_odd/dialogue/1title.2text/default";
19377       alias: "elm/layout/dialogue/1title.2text";
19378       data.item: "stacking" "above";
19379       data.item: "selectraise" "on";
19380       data.item: "texts" "elm.title elm.text.1 elm.text.2";
19381       parts {
19382          GENLIST_PART_BASE( GENLIST_HEIGHT_142_INC )
19383          GENLIST_PART_BOTTOM_LINE
19384          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
19385          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19386          GENLIST_PART_DIALOGUE_ITEM
19387          GENLIST_PART_DIALOGUE_RIGHT_LINE
19388          part { name: "vertical_line";
19389             clip_to: "disclip";
19390             type: RECT;
19391             mouse_events: 0;
19392             description { state: "default" 0.0;
19393                min: 1 0;
19394                fixed: 1 0;
19395                rel1 {
19396                   relative: 1.0 0.0;
19397                   to_x: "elm.title";
19398                }
19399                rel2.to_x: "elm.title";
19400                align: 0.0 0.5;
19401                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19402             }
19403          }
19404          part { name: "center_line";
19405             clip_to: "disclip";
19406             type: RECT;
19407             mouse_events: 0;
19408             description { state: "default" 0.0;
19409                min: 0 1;
19410                fixed: 0 1;
19411                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19412                rel1 {
19413                   relative: 1.0 0.5;
19414                   to_x: "vertical_line";
19415                }
19416                rel2.relative: 1.0 0.5;
19417                align: 0.5 1.0;
19418             }
19419          }
19420          part { name: "elm.title";
19421             clip_to: "disclip";
19422             type: TEXT;
19423             mouse_events: 0;
19424             scale: 1;
19425             description { state: "default" 0.0;
19426                min: GENLIST_SIZE_163_INC 0;
19427                fixed: 1 0;
19428                rel1 {
19429                   relative: 1.0  0.0;
19430                   to_x: "elm.padding.left";
19431                }
19432                rel2.to_x: "elm.padding.left";
19433                align: 0.0 0.5;
19434                color: GENLIST_MULTILINE_TEXT_COLOR;
19435                text {
19436                   font: "SLP:style=Medium";
19437                   size: GENLIST_MULTILINE_TEXT_SIZE;
19438                   min: 0 1;
19439                   align: 0.0 0.5;
19440                   text_class: "slp_medium";
19441                }
19442             }
19443          }
19444          part { name: "elm.padding.title.right";
19445             clip_to: "disclip";
19446             type: RECT;
19447             mouse_events: 0;
19448             scale: 1;
19449             description { state: "default" 0.0;
19450                min: GENLIST_PADDING_16_INC 0;
19451                fixed: 1 0;
19452                rel1 {
19453                    relative: 1.0 0.0;
19454                    to_x: "elm.title";
19455                }
19456                rel2.to_x: "elm.title";
19457                visible: 0;
19458                align: 0.0 0.5;
19459             }
19460          }
19461          part { name: "elm.text.1";
19462             clip_to: "disclip";
19463             type: TEXT;
19464             mouse_events: 0;
19465             scale: 1;
19466             description { state: "default" 0.0;
19467                rel1 {
19468                   relative: 1.0 0.0;
19469                   to_x: "elm.padding.title.right";
19470                }
19471                rel2 {
19472                   relative: 0.0 0.0;
19473                   to_x: "elm.padding.right";
19474                   to_y: "center_line";
19475                }
19476                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19477                text {
19478                   font: "SLP:style=Roman";
19479                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19480                   min: 0 1;
19481                   align: 0.0 0.5;
19482                   text_class: "list_item";
19483                }
19484             }
19485          }
19486          part { name: "elm.text.2";
19487             clip_to: "disclip";
19488             type: TEXT;
19489             mouse_events: 0;
19490             scale: 1;
19491             description { state: "default" 0.0;
19492                rel1 {
19493                   relative: 1.0 0.5;
19494                   to_x: "elm.padding.title.right";
19495                }
19496                rel2 {
19497                   relative: 0.0 1.0;
19498                   to_x: "elm.padding.right";
19499                }
19500                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19501                text {
19502                   font: "SLP:style=Roman";
19503                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19504                   min: 0 1;
19505                   align: 0.0 0.5;
19506                   text_class: "slp_roman";
19507                }
19508             }
19509          }
19510          GENLIST_PART_DISCLIP
19511       }
19512       programs {
19513          // signal: elm,state,%s,active
19514          //   a "check" item named %s went active
19515          // signal: elm,state,%s,passive
19516          //   a "check" item named %s went passive
19517          // default is passive
19518          program { name: "go_active";
19519             signal: "elm,state,selected";
19520             source: "elm";
19521             action: STATE_SET "selected" 0.0;
19522             target: "elm.title";
19523             target: "elm.text.1";
19524             target: "elm.text.2";
19525          }
19526          program { name: "go_passive";
19527             signal: "elm,state,unselected";
19528             source: "elm";
19529             action: STATE_SET "default" 0.0;
19530             target: "elm.title";
19531             target: "elm.text.1";
19532             target: "elm.text.2";
19533             transition: LINEAR 0.1;
19534          }
19535          program { name: "go_disabled";
19536             signal: "elm,state,disabled";
19537             source: "elm";
19538             action: STATE_SET "disabled" 0.0;
19539             target: "disclip";
19540          }
19541          program { name: "go_enabled";
19542             signal: "elm,state,enabled";
19543             source: "elm";
19544             action: STATE_SET "default" 0.0;
19545             target: "disclip";
19546          }
19547       }
19548    }*/
19549
19550    /* DEPRECATED : remove this style. use dialogue/1text.4icon instead. */
19551    group { name: "elm/genlist/item/dialogue/4icon/default";
19552       alias: "elm/genlist/item_odd/dialogue/4icon/default";
19553       alias: "elm/genlist/item_compress/dialogue/4icon/default";
19554       alias: "elm/genlist/item_compress_odd/dialogue/4icon/default";
19555       alias: "elm/layout/dialogue/4icon";
19556       data.item: "stacking" "above";
19557       data.item: "selectraise" "on";
19558       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
19559       images {
19560          image : "00_input_bg.png" COMP;
19561       }
19562       parts {
19563          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
19564          GENLIST_PART_DIALOGUE_BG_IMAGE
19565          GENLIST_PART_BOTTOM_LINE
19566          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19567          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
19568          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_12_INC )
19569          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_74_INC )
19570          GENLIST_PART_DIALOGUE_ITEM
19571          GENLIST_PART_DIALOGUE_RIGHT_LINE
19572          part { name: "text";
19573             clip_to: "disclip";
19574             type: TEXT;
19575             mouse_events: 0;
19576             scale: 1;
19577             description { state: "default" 0.0;
19578                min: 0 GENLIST_SIZE_48_INC;
19579                fixed: 0 1;
19580                rel1 {
19581                   relative: 1.0 1.0;
19582                   to_x: "elm.padding.left";
19583                   to_y: "elm.padding.top";
19584                }
19585                rel2 {
19586                   relative: 0.0 1.0;
19587                   to_x: "elm.padding.right";
19588                   to_y: "elm.padding.top";
19589                }
19590                align: 0.0 0.0;
19591                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
19592                text {
19593                   font: "SLP:style=Medium";
19594                   size: GENLIST_FONT_32_INC;
19595                   min: 0 1;
19596                   align: 0.0 0.5;
19597                   text: "Password";
19598                   text_class: "list_item";
19599                }
19600             }
19601             description { state: "selected" 0.0;
19602                inherit: "default" 0.0;
19603                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19604             }
19605          }
19606          part { name: "elm.padding.icon1.left";
19607             clip_to: "disclip";
19608             type: RECT;
19609             scale: 1;
19610             description { state: "default" 0.0;
19611                min: GENLIST_PADDING_74_INC 0;
19612                fixed: 1 0;
19613                rel1 {
19614                   relative: 1.0 0.0;
19615                   to_x: "elm.padding.left";
19616                   to_y: "elm.padding.bottom";
19617                }
19618                rel2 {
19619                   relative: 1.0 0.0;
19620                   to_x: "elm.padding.left";
19621                   to_y: "elm.padding.bottom";
19622                }
19623                align: 0.0 1.0;
19624                visible: 0;
19625             }
19626          }
19627          part { name: "elm.icon1.bg";
19628             clip_to: "disclip";
19629             type: IMAGE;
19630             scale: 1;
19631             description { state: "default" 0.0;
19632                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19633                fixed: 1 1;
19634                rel1 {
19635                   relative: 1.0 0.0;
19636                   to_x: "elm.padding.icon1.left";
19637                   to_y: "elm.padding.bottom";
19638                }
19639                rel2 {
19640                   relative: 1.0 0.0;
19641                   to_x: "elm.padding.icon1.left";
19642                   to_y: "elm.padding.bottom";
19643                }
19644                align: 0.0 1.0;
19645                image.normal: "00_input_bg.png";
19646                image.border: 4 4 4 4; // TODO: check this out.
19647                image.border_scale: 1;
19648             }
19649          }
19650          part { name: "elm.icon.1";
19651             clip_to: "disclip";
19652             type: SWALLOW;
19653             scale: 1;
19654             description { state: "default" 0.0;
19655                rel1.to: "elm.icon1.bg";
19656                rel2.to: "elm.icon1.bg";
19657                align: 0.5 0.5;
19658             }
19659          }
19660          part { name: "elm.padding.icon2.left";
19661             clip_to: "disclip";
19662             type: RECT;
19663             scale: 1;
19664             description { state: "default" 0.0;
19665                min: GENLIST_ICON_SMALL_SIZE 0;
19666                fixed: 1 0;
19667                rel1 {
19668                   relative: 1.0 0.0;
19669                   to_x: "elm.icon1.bg";
19670                   to_y: "elm.padding.bottom";
19671                }
19672                rel2 {
19673                   relative: 1.0 0.0;
19674                   to_x: "elm.icon1.bg";
19675                   to_y: "elm.padding.bottom";
19676                }
19677                align: 0.0 1.0;
19678                visible: 0;
19679             }
19680          }
19681          part { name: "elm.icon2.bg";
19682             clip_to: "disclip";
19683             type: IMAGE;
19684             scale: 1;
19685             description { state: "default" 0.0;
19686                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19687                fixed: 1 1;
19688                rel1 {
19689                   relative: 1.0 0.0;
19690                   to_x: "elm.padding.icon2.left";
19691                   to_y: "elm.padding.bottom";
19692                }
19693                rel2 {
19694                   relative: 1.0 0.0;
19695                   to_x: "elm.padding.icon2.left";
19696                   to_y: "elm.padding.bottom";
19697                }
19698                align: 0.0 1.0;
19699                image.normal: "00_input_bg.png";
19700                image.border: 4 4 4 4; // TODO : check this out
19701                image.border_scale: 1;
19702             }
19703          }
19704          part { name: "elm.icon.2";
19705             clip_to: "disclip";
19706             type: SWALLOW;
19707             scale: 1;
19708             description { state: "default" 0.0;
19709                rel1.to: "elm.icon2.bg";
19710                rel2.to: "elm.icon2.bg";
19711                align: 0.5 0.5;
19712             }
19713          }
19714          part { name: "elm.padding.icon3.left";
19715             clip_to: "disclip";
19716             type: RECT;
19717             scale: 1;
19718             description { state: "default" 0.0;
19719                min: GENLIST_ICON_SMALL_SIZE 0;
19720                fixed: 1 0;
19721                rel1 {
19722                   relative: 1.0 0.0;
19723                   to_x: "elm.icon2.bg";
19724                   to_y: "elm.padding.bottom";
19725                }
19726                rel2 {
19727                   relative: 1.0 0.0;
19728                   to_x: "elm.icon2.bg";
19729                   to_y: "elm.padding.bottom";
19730                }
19731                align: 0.0 1.0;
19732                visible: 0;
19733             }
19734          }
19735          part { name: "elm.icon3.bg";
19736             clip_to: "disclip";
19737             type: IMAGE;
19738             scale: 1;
19739             description { state: "default" 0.0;
19740                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19741                fixed: 1 1;
19742                rel1 {
19743                   relative: 1.0 0.0;
19744                   to_x: "elm.padding.icon3.left";
19745                   to_y: "elm.padding.bottom";
19746                }
19747                rel2 {
19748                   relative: 1.0 0.0;
19749                   to_x: "elm.padding.icon3.left";
19750                   to_y: "elm.padding.bottom";
19751                }
19752                align: 0.0 1.0;
19753                image.normal: "00_input_bg.png";
19754                image.border: 4 4 4 4; // TODO: handle this?
19755                image.border_scale: 1;
19756             }
19757          }
19758          part { name: "elm.icon.3";
19759             clip_to: "disclip";
19760             type: SWALLOW;
19761             scale: 1;
19762             description { state: "default" 0.0;
19763                rel1.to: "elm.icon3.bg";
19764                rel2.to: "elm.icon3.bg";
19765                align: 0.5 0.5;
19766             }
19767          }
19768          part { name: "elm.padding.icon4.left";
19769             clip_to: "disclip";
19770             type: RECT;
19771             scale: 1;
19772             description { state: "default" 0.0;
19773                min: GENLIST_ICON_SMALL_SIZE 0;
19774                fixed: 1 0;
19775                rel1 {
19776                   relative: 1.0 0.0;
19777                   to_x: "elm.icon3.bg";
19778                   to_y: "elm.padding.bottom";
19779                }
19780                rel2 {
19781                   relative: 1.0 0.0;
19782                   to_x: "elm.icon3.bg";
19783                   to_y: "elm.padding.bottom";
19784                }
19785                align: 0.0 1.0;
19786                visible: 0;
19787             }
19788          }
19789          part { name: "elm.icon4.bg";
19790             clip_to: "disclip";
19791             type: IMAGE;
19792             scale: 1;
19793             description { state: "default" 0.0;
19794                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19795                fixed: 1 1;
19796                rel1 {
19797                   relative: 1.0 0.0;
19798                   to_x: "elm.padding.icon4.left";
19799                   to_y: "elm.padding.bottom";
19800                }
19801                rel2 {
19802                   relative: 1.0 0.0;
19803                   to_x: "elm.padding.icon4.left";
19804                   to_y: "elm.padding.bottom";
19805                }
19806                align: 0.0 1.0;
19807                image.normal: "00_input_bg.png";
19808                image.border: 4 4 4 4; // TODO: check this out
19809                image.border_scale: 1;
19810             }
19811          }
19812          part { name: "elm.icon.4";
19813             clip_to: "disclip";
19814             type: SWALLOW;
19815             scale: 1;
19816             description { state: "default" 0.0;
19817                rel1.to: "elm.icon4.bg";
19818                rel2.to: "elm.icon4.bg";
19819                align: 0.5 0.5;
19820             }
19821          }
19822          GENLIST_PART_DISCLIP
19823       }
19824       programs {
19825          // signal: elm,state,%s,active
19826          //   a "check" item named %s went active
19827          // signal: elm,state,%s,passive
19828          //   a "check" item named %s went passive
19829          // default is passive
19830          /*program { name: "go_active";
19831             signal: "elm,state,selected";
19832             source: "elm";
19833             action: STATE_SET "selected" 0.0;
19834             target: "bg_image";
19835             target: "elm.text.1";
19836             target: "elm.text.2";
19837          }
19838          program { name: "go_passive";
19839             signal: "elm,state,unselected";
19840             source: "elm";
19841             action: STATE_SET "default" 0.0;
19842             target: "bg_image";
19843             target: "elm.text.1";
19844             target: "elm.text.2";
19845             transition: LINEAR 0.1;
19846          }*/
19847          program { name: "go_disabled";
19848             signal: "elm,state,disabled";
19849             source: "elm";
19850             action: STATE_SET "disabled" 0.0;
19851             target: "disclip";
19852          }
19853          program { name: "go_enabled";
19854             signal: "elm,state,enabled";
19855             source: "elm";
19856             action: STATE_SET "default" 0.0;
19857             target: "disclip";
19858          }
19859       }
19860    }
19861
19862    group { name: "elm/genlist/item/dialogue/2text.2icon.4/default";
19863       alias: "elm/genlist/item_odd/dialogue/2text.2icon.4/default";
19864       alias: "elm/genlist/item_compress/dialogue/2text.2icon.4/default";
19865       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.4/default";
19866       alias: "elm/layout/dialogue/2text.2icon.4";
19867       data.item: "stacking" "above";
19868       data.item: "selectraise" "on";
19869       data.item: "texts" "elm.text.1 elm.text.2";
19870       data.item: "contents" "elm.icon.1 elm.icon.2";
19871       data.item: "flips" "elm.flip.content";
19872       images {
19873          image: "00_list_bar_press_1x80.png" COMP;
19874       }
19875       parts {
19876          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19877          GENLIST_PART_DIALOGUE_BG_IMAGE
19878          GENLIST_PART_BOTTOM_LINE
19879          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19880          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19881          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19882          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19883          GENLIST_PART_DIALOGUE_ITEM
19884          GENLIST_PART_DIALOGUE_RIGHT_LINE
19885          part { name: "elm.icon.1";
19886             clip_to: "disclip";
19887             type: SWALLOW;
19888             scale: 1;
19889             description { state: "default" 0.0;
19890                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19891                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19892                fixed: 1 1;
19893                rel1 {
19894                   relative: 1.0 1.0;
19895                   to_x: "elm.padding.left";
19896                   to_y: "elm.text.1";
19897                }
19898                rel2 {
19899                   relative: 1.0 0.0;
19900                   to_x: "elm.padding.left";
19901                   to_y: "elm.padding.bottom";
19902                }
19903                align: 0.0 0.5;
19904             }
19905             GENLIST_DESCRIPTION_FLIP_ENABLED
19906          }
19907          part { name: "elm.padding.icon1.right";
19908             clip_to: "disclip";
19909             type: RECT;
19910             scale: 1;
19911             description { state: "default" 0.0;
19912                min: GENLIST_PADDING_16_INC 0;
19913                fixed: 1 0;
19914                rel1 {
19915                   relative: 1.0 0.0;
19916                   to_x: "elm.icon.1";
19917                }
19918                rel2.to_x: "elm.icon.1";
19919                align: 0.0 0.0;
19920                visible: 0;
19921             }
19922          }
19923          part { name: "elm.icon.2";
19924             clip_to: "disclip";
19925             type: SWALLOW;
19926             scale: 1;
19927             description { state: "default" 0.0;
19928                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19929                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19930                fixed: 1 1;
19931                rel1 {
19932                   relative: 0.0 1.0;
19933                   to_x: "elm.padding.right";
19934                   to_y: "elm.padding.top";
19935                }
19936                rel2 {
19937                   relative: 0.0 1.0;
19938                   to_x: "elm.padding.right";
19939                   to_y: "elm.text.1";
19940                }
19941                align: 1.0 0.5;
19942             }
19943             GENLIST_DESCRIPTION_FLIP_ENABLED
19944          }
19945          part { name: "elm.padding.icon2.left";
19946             clip_to: "disclip";
19947             type: RECT;
19948             scale: 1;
19949             description { state: "default" 0.0;
19950                min: GENLIST_PADDING_16_INC 0;
19951                fixed: 1 0;
19952                rel1 {
19953                   relative: 0.0 0.0;
19954                   to_x: "elm.icon.2";
19955                }
19956                rel2.to_x: "elm.icon.2";
19957                align: 1.0 0.0;
19958                visible: 0;
19959             }
19960          }
19961          part { name: "elm.text.1";
19962             clip_to: "disclip";
19963             type: TEXT;
19964             mouse_events: 0;
19965             scale: 1;
19966             description { state: "default" 0.0;
19967                min: 0 GENLIST_SIZE_61_INC;
19968                fixed: 0 1;
19969                rel1 {
19970                   relative: 1.0 1.0;
19971                   to_x: "elm.padding.left";
19972                   to_y: "elm.padding.top";
19973                }
19974                rel2 {
19975                   relative: 0.0 1.0;
19976                   to_x: "elm.padding.icon2.left";
19977                   to_y: "elm.padding.top";
19978                }
19979                align: 0.0 0.0;
19980                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19981                text {
19982                   font: "SLP:style=Roman";
19983                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19984                   min: 0 1;
19985                   align: 0.0 0.5;
19986                   text_class: "list_item";
19987                }
19988             }
19989             description { state: "selected" 0.0;
19990                inherit: "default" 0.0;
19991                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
19992             }
19993             GENLIST_DESCRIPTION_FLIP_ENABLED
19994          }
19995          part { name: "elm.text.2";
19996             clip_to: "disclip";
19997             type: TEXT;
19998             mouse_events: 0;
19999             scale: 1;
20000             description { state: "default" 0.0;
20001                rel1 {
20002                   relative: 1.0 1.0;
20003                   to_x: "elm.padding.icon1.right";
20004                   to_y: "elm.text.1";
20005                }
20006                rel2 {
20007                   relative: 0.0 0.0;
20008                   to_x: "elm.padding.right";
20009                   to_y: "elm.padding.bottom";
20010                }
20011                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
20012                text {
20013                   font: "SLP:style=Medium";
20014                   size: GENLIST_FONT_32_INC;
20015                   min: 0 1;
20016                   align: 0.0 0.5;
20017                   text_class: "slp_medium";
20018                }
20019             }
20020             description { state: "selected" 0.0;
20021                inherit: "default" 0.0;
20022                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
20023             }
20024             GENLIST_DESCRIPTION_FLIP_ENABLED
20025          }
20026          GENLIST_PART_FLIP
20027          GENLIST_PART_DISCLIP
20028       }
20029       programs {
20030          // signal: elm,state,%s,active
20031          //   a "check" item named %s went active
20032          // signal: elm,state,%s,passive
20033          //   a "check" item named %s went passive
20034          // default is passive
20035          program { name: "go_active";
20036             signal: "elm,state,selected";
20037             source: "elm";
20038             action: STATE_SET "selected" 0.0;
20039             target: "bg_image";
20040             target: "elm.text.1";
20041             target: "elm.text.2";
20042             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20043          }
20044          program { name: "go_passive";
20045             signal: "elm,state,unselected";
20046             source: "elm";
20047             action: STATE_SET "default" 0.0;
20048             target: "bg_image";
20049             target: "elm.text.1";
20050             target: "elm.text.2";
20051             transition: LINEAR 0.1;
20052          }
20053          program { name: "go_disabled";
20054             signal: "elm,state,disabled";
20055             source: "elm";
20056             action: STATE_SET "disabled" 0.0;
20057             target: "disclip";
20058          }
20059          program { name: "go_enabled";
20060             signal: "elm,state,enabled";
20061             source: "elm";
20062             action: STATE_SET "default" 0.0;
20063             target: "disclip";
20064          }
20065          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
20066          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20067       }
20068    }
20069
20070    group { name: "elm/genlist/item/dialogue/2text.1icon.6/default";
20071       alias: "elm/genlist/item_odd/dialogue/2text.1icon.6/default";
20072       alias: "elm/genlist/item_compress/dialogue/2text.1icon.6/default";
20073       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.6/default";
20074       alias: "elm/layout/dialogue/2text.1icon.6";
20075       data.item: "stacking" "above";
20076       data.item: "selectraise" "on";
20077       data.item: "texts" "elm.text.1 elm.text.2";
20078       data.item: "contents" "elm.icon";
20079       data.item: "flips" "elm.flip.content";
20080       parts {
20081          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20082          GENLIST_PART_DIALOGUE_BG_IMAGE
20083          GENLIST_PART_BOTTOM_LINE
20084          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20085          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20086          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20087          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20088          GENLIST_PART_DIALOGUE_ITEM
20089          GENLIST_PART_DIALOGUE_RIGHT_LINE
20090          part { name: "elm.icon";
20091             clip_to: "disclip";
20092             type: SWALLOW;
20093             scale: 1;
20094             description { state: "default" 0.0;
20095                fixed: 1 1;
20096                rel1.to_x: "elm.padding.right";
20097                rel2 {
20098                   relative: 0.0 1.0;
20099                   to_x: "elm.padding.right";
20100                }
20101                align: 1.0 0.5;
20102             }
20103             GENLIST_DESCRIPTION_FLIP_ENABLED
20104          }
20105          part { name: "elm.padding.icon.left";
20106             clip_to: "disclip";
20107             type: RECT;
20108             scale: 1;
20109             description { state: "default" 0.0;
20110                min: GENLIST_SIZE_16_INC 0;
20111                fixed: 1 0;
20112                rel1.to_x: "elm.icon";
20113                rel2 {
20114                   relative: 0.0 1.0;
20115                   to_x: "elm.icon";
20116                }
20117                align: 1.0 0.0;
20118                visible: 0;
20119             }
20120          }
20121          part { name: "elm.text.1";
20122             clip_to: "disclip";
20123             type: TEXT;
20124             mouse_events: 0;
20125             scale: 1;
20126             description { state: "default" 0.0;
20127                min: 0 GENLIST_SIZE_61_INC;
20128                fixed: 0 1;
20129                rel1 {
20130                   relative: 1.0 1.0;
20131                   to_x: "elm.padding.left";
20132                   to_y: "elm.padding.top";
20133                }
20134                rel2 {
20135                   relative: 0.0 1.0;
20136                   to_x: "elm.padding.icon.left";
20137                   to_y: "elm.padding.top";
20138                }
20139                align: 0.0 0.0;
20140                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20141                text {
20142                   font: "SLP:style=Roman";
20143                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20144                   min: 0 1;
20145                   align: 0.0 0.5;
20146                   text_class: "list_item";
20147                }
20148             }
20149             description { state: "selected" 0.0;
20150                inherit: "default" 0.0;
20151                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20152             }
20153             GENLIST_DESCRIPTION_FLIP_ENABLED
20154          }
20155          part { name: "elm.text.2";
20156             clip_to: "disclip";
20157             type: TEXT;
20158             mouse_events: 0;
20159             scale: 1;
20160             description { state: "default" 0.0;
20161                rel1 {
20162                   relative: 1.0 1.0;
20163                   to_x: "elm.padding.left";
20164                   to_y: "elm.text.1";
20165                }
20166                rel2 {
20167                   relative: 0.0 0.0;
20168                   to_x: "elm.padding.icon.left";
20169                   to_y: "elm.padding.bottom";
20170                }
20171                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
20172                text {
20173                   font: "SLP:style=Medium";
20174                   size: GENLIST_FONT_32_INC;
20175                   min: 0 1;
20176                   align: 0.0 0.5;
20177                   text_class: "slp_medium";
20178                }
20179             }
20180             description { state: "selected" 0.0;
20181                inherit: "default" 0.0;
20182                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20183             }
20184             GENLIST_DESCRIPTION_FLIP_ENABLED
20185          }
20186          GENLIST_PART_FLIP
20187          GENLIST_PART_DISCLIP
20188       }
20189       programs {
20190          // signal: elm,state,%s,active
20191          //   a "check" item named %s went active
20192          // signal: elm,state,%s,passive
20193          //   a "check" item named %s went passive
20194          // default is passive
20195          program { name: "go_active";
20196             signal: "elm,state,selected";
20197             source: "elm";
20198             action: STATE_SET "selected" 0.0;
20199             target: "bg_image";
20200             target: "elm.text.1";
20201             target: "elm.text.2";
20202             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20203          }
20204          program { name: "go_passive";
20205             signal: "elm,state,unselected";
20206             source: "elm";
20207             action: STATE_SET "default" 0.0;
20208             target: "bg_image";
20209             target: "elm.text.1";
20210             target: "elm.text.2";
20211             transition: LINEAR 0.1;
20212          }
20213          program { name: "go_disabled";
20214             signal: "elm,state,disabled";
20215             source: "elm";
20216             action: STATE_SET "disabled" 0.0;
20217             target: "disclip";
20218          }
20219          program { name: "go_enabled";
20220             signal: "elm,state,enabled";
20221             source: "elm";
20222             action: STATE_SET "default" 0.0;
20223             target: "disclip";
20224          }
20225          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20226          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20227       }
20228    }
20229
20230    group { name: "elm/genlist/item/dialogue/2text.1icon.7/default";
20231       alias: "elm/genlist/item_odd/dialogue/2text.1icon.7/default";
20232       alias: "elm/genlist/item_compress/dialogue/2text.1icon.7/default";
20233       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.7/default";
20234       alias: "elm/layout/dialogue/2text.1icon.7";
20235       data.item: "stacking" "above";
20236       data.item: "selectraise" "on";
20237       data.item: "texts" "elm.text.1 elm.text.2";
20238       data.item: "contents" "elm.icon";
20239       data.item: "flips" "elm.flip.content";
20240       parts {
20241          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20242          GENLIST_PART_DIALOGUE_BG_IMAGE
20243          GENLIST_PART_BOTTOM_LINE
20244          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20245          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20246          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20247          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20248          GENLIST_PART_DIALOGUE_ITEM
20249          GENLIST_PART_DIALOGUE_RIGHT_LINE
20250          part { name: "elm.icon";
20251             clip_to: "disclip";
20252             type: SWALLOW;
20253             scale: 1;
20254             description { state: "default" 0.0;
20255                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
20256                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
20257                fixed: 1 1;
20258                rel1 {
20259                   relative: 0.0 1.0;
20260                   to_x: "elm.padding.right";
20261                   to_y: "elm.padding.top";
20262                }
20263                rel2 {
20264                   relative: 0.0 0.0;
20265                   to_x: "elm.padding.right";
20266                   to_y: "elm.padding.bottom";
20267                }
20268                align: 1.0 0.5;
20269             }
20270             GENLIST_DESCRIPTION_FLIP_ENABLED
20271          }
20272          part { name: "elm.padding.icon.left";
20273             clip_to: "disclip";
20274             type: RECT;
20275             scale: 1;
20276             description { state: "default" 0.0;
20277                min: GENLIST_SIZE_16_INC 0;
20278                fixed: 1 0;
20279                rel1.to_x: "elm.icon";
20280                rel2 {
20281                   relative: 0.0 1.0;
20282                   to_x: "elm.icon";
20283                }
20284                align: 1.0 0.0;
20285                visible: 0;
20286             }
20287          }
20288          part { name: "elm.text.1";
20289             clip_to: "disclip";
20290             type: TEXT;
20291             mouse_events: 0;
20292             scale: 1;
20293             description { state: "default" 0.0;
20294                min: 0 GENLIST_SIZE_61_INC;
20295                fixed: 0 1;
20296                rel1 {
20297                   relative: 1.0 1.0;
20298                   to_x: "elm.padding.left";
20299                   to_y: "elm.padding.top";
20300                }
20301                rel2 {
20302                   relative: 0.0 1.0;
20303                   to_x: "elm.padding.icon.left";
20304                   to_y: "elm.padding.top";
20305                }
20306                align: 0.0 0.0;
20307                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20308                text {
20309                   font: "SLP:style=Roman";
20310                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20311                   min: 0 1;
20312                   align: 0.0 0.5;
20313                   text_class: "list_item";
20314                }
20315             }
20316             description { state: "selected" 0.0;
20317                inherit: "default" 0.0;
20318                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20319             }
20320             GENLIST_DESCRIPTION_FLIP_ENABLED
20321          }
20322          part { name: "elm.text.2";
20323             clip_to: "disclip";
20324             type: TEXT;
20325             mouse_events: 0;
20326             scale: 1;
20327             description { state: "default" 0.0;
20328                rel1 {
20329                   relative: 1.0 1.0;
20330                   to_x: "elm.padding.left";
20331                   to_y: "elm.text.1";
20332                }
20333                rel2 {
20334                   relative: 0.0 0.0;
20335                   to_x: "elm.padding.icon.left";
20336                   to_y: "elm.padding.bottom";
20337                }
20338                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
20339                text {
20340                   font: "SLP:style=Medium";
20341                   size: GENLIST_FONT_32_INC;
20342                   min: 0 1;
20343                   align: 0.0 0.5;
20344                   text_class: "slp_medium";
20345                }
20346             }
20347             description { state: "selected" 0.0;
20348                inherit: "default" 0.0;
20349                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
20350             }
20351             GENLIST_DESCRIPTION_FLIP_ENABLED
20352          }
20353          GENLIST_PART_FLIP
20354          GENLIST_PART_DISCLIP
20355       }
20356       programs {
20357          // signal: elm,state,%s,active
20358          //   a "check" item named %s went active
20359          // signal: elm,state,%s,passive
20360          //   a "check" item named %s went passive
20361          // default is passive
20362          program { name: "go_active";
20363             signal: "elm,state,selected";
20364             source: "elm";
20365             action: STATE_SET "selected" 0.0;
20366             target: "bg_image";
20367             target: "elm.text.1";
20368             target: "elm.text.2";
20369             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20370          }
20371          program { name: "go_passive";
20372             signal: "elm,state,unselected";
20373             source: "elm";
20374             action: STATE_SET "default" 0.0;
20375             target: "bg_image";
20376             target: "elm.text.1";
20377             target: "elm.text.2";
20378             transition: LINEAR 0.1;
20379          }
20380          program { name: "go_disabled";
20381             signal: "elm,state,disabled";
20382             source: "elm";
20383             action: STATE_SET "disabled" 0.0;
20384             target: "disclip";
20385          }
20386          program { name: "go_enabled";
20387             signal: "elm,state,enabled";
20388             source: "elm";
20389             action: STATE_SET "default" 0.0;
20390             target: "disclip";
20391          }
20392          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20393          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20394       }
20395    }
20396
20397    group { name: "elm/genlist/item/dialogue/2text.1icon.8/default";
20398       alias: "elm/genlist/item_odd/dialogue/2text.1icon.8/default";
20399       alias: "elm/genlist/item_compress/dialogue/2text.1icon.8/default";
20400       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.8/default";
20401       alias: "elm/layout/dialogue/2text.1icon.8";
20402       data.item: "stacking" "above";
20403       data.item: "selectraise" "on";
20404       data.item: "texts" "elm.text.1 elm.text.2";
20405       data.item: "contents" "elm.icon";
20406       data.item: "flips" "elm.flip.content";
20407       images {
20408          image: "00_list_bar_press_1x80.png" COMP;
20409       }
20410       parts {
20411          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20412          GENLIST_PART_DIALOGUE_BG_IMAGE
20413          GENLIST_PART_BOTTOM_LINE
20414          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20415          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20416          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20417          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20418          GENLIST_PART_DIALOGUE_ITEM
20419          GENLIST_PART_DIALOGUE_RIGHT_LINE
20420          part { name: "elm.text.2";
20421             clip_to: "disclip";
20422             type: TEXT;
20423             mouse_events: 0;
20424             scale: 1;
20425             description { state: "default" 0.0;
20426                min: 0 GENLIST_SIZE_48_INC;
20427                fixed: 0 1;
20428                rel1 {
20429                   relative: 1.0 1.0;
20430                   to_x: "elm.padding.left";
20431                   to_y: "elm.padding.top";
20432                }
20433                rel2 {
20434                   relative: 0.0 1.0;
20435                   to_x: "elm.padding.right";
20436                   to_y: "elm.padding.top";
20437                }
20438                align: 0.0 0.0;
20439                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
20440                text {
20441                   font: "SLP:style=Medium";
20442                   size: GENLIST_FONT_32_INC;
20443                   min: 0 1;
20444                   align: 0.0 0.5;
20445                   text_class: "slp_roman";
20446                }
20447             }
20448             description { state: "selected" 0.0;
20449                inherit: "default" 0.0;
20450                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
20451             }
20452             GENLIST_DESCRIPTION_FLIP_ENABLED
20453          }
20454          part { name: "elm.text.1";
20455             clip_to: "disclip";
20456             type: TEXT;
20457             mouse_events: 0;
20458             scale: 1;
20459             description { state: "default" 0.0;
20460                min: GENLIST_SIZE_672_INC 0;
20461                fixed: 1 0;
20462                rel1 {
20463                   relative: 1.0 1.0;
20464                   to_x: "elm.padding.left";
20465                   to_y: "elm.text.2";
20466                }
20467                rel2 {
20468                   relative: 1.0 0.0;
20469                   to_x: "elm.padding.left";
20470                   to_y: "elm.padding.bottom";
20471                }
20472                align: 0.0 0.5;
20473                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20474                text {
20475                   font: "SLP:style=Roman";
20476                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20477                   min: 1 1;
20478                   align: 0.0 0.5;
20479                   text_class: "list_item";
20480                }
20481             }
20482             description { state: "selected" 0.0;
20483                inherit: "default" 0.0;
20484                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20485             }
20486             GENLIST_DESCRIPTION_FLIP_ENABLED
20487          }
20488          part { name: "elm.padding.text1.right";
20489             clip_to: "disclip";
20490             type: RECT;
20491             scale: 1;
20492             description { state: "default" 0.0;
20493                min: GENLIST_SIZE_16_INC 0;
20494                fixed: 1 0;
20495                visible: 0;
20496                rel1 {
20497                   relative: 1.0 0.0;
20498                   to_x: "elm.text.1";
20499                }
20500                rel2.to_x: "elm.text.1";
20501                align: 0.0 0.0;
20502             }
20503          }
20504          part { name: "elm.icon";
20505             clip_to: "disclip";
20506             type: SWALLOW;
20507             scale: 1;
20508             description { state: "default" 0.0;
20509                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20510                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20511                fixed: 1 1;
20512                rel1 {
20513                   relative: 1.0 1.0;
20514                   to_x: "elm.padding.text1.right";
20515                   to_y: "elm.text.2";
20516                }
20517                rel2 {
20518                   relative: 1.0 0.0;
20519                   to_x: "elm.padding.text1.right";
20520                   to_y: "elm.padding.bottom";
20521                }
20522                align: 0.0 0.5;
20523             }
20524             GENLIST_DESCRIPTION_FLIP_ENABLED
20525          }
20526          GENLIST_PART_FLIP
20527          GENLIST_PART_DISCLIP
20528       }
20529       programs {
20530          // signal: elm,state,%s,active
20531          //   a "check" item named %s went active
20532          // signal: elm,state,%s,passive
20533          //   a "check" item named %s went passive
20534          // default is passive
20535          program { name: "go_active";
20536             signal: "elm,state,selected";
20537             source: "elm";
20538             action: STATE_SET "selected" 0.0;
20539             target: "bg_image";
20540             target: "elm.text.1";
20541             target: "elm.text.2";
20542             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20543          }
20544          program { name: "go_passive";
20545             signal: "elm,state,unselected";
20546             source: "elm";
20547             action: STATE_SET "default" 0.0;
20548             target: "bg_image";
20549             target: "elm.text.1";
20550             target: "elm.text.2";
20551             transition: LINEAR 0.1;
20552          }
20553          program { name: "go_disabled";
20554             signal: "elm,state,disabled";
20555             source: "elm";
20556             action: STATE_SET "disabled" 0.0;
20557             target: "disclip";
20558          }
20559          program { name: "go_enabled";
20560             signal: "elm,state,enabled";
20561             source: "elm";
20562             action: STATE_SET "default" 0.0;
20563             target: "disclip";
20564          }
20565          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20566          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20567       }
20568    }
20569
20570    // 2.4.2.19
20571    group { name: "elm/genlist/item/dialogue/2text.1icon.9/default";
20572       alias: "elm/genlist/item_odd/dialogue/2text.1icon.9/default";
20573       alias: "elm/genlist/item_compress/dialogue/2text.1icon.9/default";
20574       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.9/default";
20575       alias: "elm/layout/dialogue/2text.1icon.9";
20576       data.item: "stacking" "above";
20577       data.item: "selectraise" "on";
20578       data.item: "texts" "elm.text.1 elm.text.2";
20579       data.item: "contents" "elm.icon.1";
20580       data.item: "flips" "elm.flip.content";
20581       images {
20582          image: "00_list_bar_press_1x80.png" COMP;
20583       }
20584       parts {
20585          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20586          GENLIST_PART_DIALOGUE_BG_IMAGE
20587          GENLIST_PART_BOTTOM_LINE
20588          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20589          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20590          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20591          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20592          GENLIST_PART_DIALOGUE_ITEM
20593          GENLIST_PART_DIALOGUE_RIGHT_LINE
20594          part { name: "elm.icon.1";
20595             clip_to: "disclip";
20596             type: SWALLOW;
20597             scale: 1;
20598             description { state: "default" 0.0;
20599                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20600                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20601                fixed: 1 1;
20602                rel1 {
20603                   relative: 1.0 1.0;
20604                   to_x: "elm.padding.left";
20605                   to_y: "elm.text.1";
20606                }
20607                rel2 {
20608                   relative: 1.0 0.0;
20609                   to_x: "elm.padding.left";
20610                   to_y: "elm.padding.bottom";
20611                }
20612                align: 0.0 0.5;
20613             }
20614             GENLIST_DESCRIPTION_FLIP_ENABLED
20615          }
20616          part { name: "elm.padding.icon1.right";
20617             clip_to: "disclip";
20618             type: RECT;
20619             scale: 1;
20620             description { state: "default" 0.0;
20621                min: GENLIST_PADDING_16_INC 0;
20622                fixed: 1 0;
20623                rel1 {
20624                   relative: 1.0 0.0;
20625                   to_x: "elm.icon.1";
20626                }
20627                rel2.to_x: "elm.icon.1";
20628                align: 0.0 0.0;
20629                visible: 0;
20630             }
20631          }
20632          part { name: "elm.text.1";
20633             clip_to: "disclip";
20634             type: TEXT;
20635             mouse_events: 0;
20636             scale: 1;
20637             description { state: "default" 0.0;
20638                min: 0 GENLIST_SIZE_61_INC;
20639                fixed: 0 1;
20640                rel1 {
20641                   relative: 1.0 1.0;
20642                   to_x: "elm.padding.left";
20643                   to_y: "elm.padding.top";
20644                }
20645                rel2 {
20646                   relative: 0.0 1.0;
20647                   to_x: "elm.padding.right";
20648                   to_y: "elm.padding.top";
20649                }
20650                align: 0.0 0.0;
20651                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20652                text {
20653                   font: "SLP:style=Roman";
20654                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20655                   min: 0 1;
20656                   align: 0.0 0.5;
20657                   text_class: "list_item";
20658                }
20659             }
20660             description { state: "selected" 0.0;
20661                inherit: "default" 0.0;
20662                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20663             }
20664             GENLIST_DESCRIPTION_FLIP_ENABLED
20665          }
20666          part { name: "elm.text.2";
20667             clip_to: "disclip";
20668             type: TEXT;
20669             mouse_events: 0;
20670             scale: 1;
20671             description { state: "default" 0.0;
20672                rel1 {
20673                   relative: 1.0 1.0;
20674                   to_x: "elm.padding.icon1.right";
20675                   to_y: "elm.text.1";
20676                }
20677                rel2 {
20678                   relative: 0.0 0.0;
20679                   to_x: "elm.padding.right";
20680                   to_y: "elm.padding.bottom";
20681                }
20682                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
20683                text {
20684                   font: "SLP:style=Medium";
20685                   size: GENLIST_FONT_32_INC;
20686                   min: 0 1;
20687                   align: 0.0 0.5;
20688                   text_class: "slp_medium";
20689                }
20690             }
20691             description { state: "selected" 0.0;
20692                inherit: "default" 0.0;
20693                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20694             }
20695             GENLIST_DESCRIPTION_FLIP_ENABLED
20696          }
20697          GENLIST_PART_FLIP
20698          GENLIST_PART_DISCLIP
20699       }
20700       programs {
20701          // signal: elm,state,%s,active
20702          //   a "check" item named %s went active
20703          // signal: elm,state,%s,passive
20704          //   a "check" item named %s went passive
20705          // default is passive
20706          program { name: "go_active";
20707             signal: "elm,state,selected";
20708             source: "elm";
20709             action: STATE_SET "selected" 0.0;
20710             target: "bg_image";
20711             target: "elm.text.1";
20712             target: "elm.text.2";
20713          }
20714          program { name: "go_passive";
20715             signal: "elm,state,unselected";
20716             source: "elm";
20717             action: STATE_SET "default" 0.0;
20718             target: "bg_image";
20719             target: "elm.text.1";
20720             target: "elm.text.2";
20721             transition: LINEAR 0.1;
20722          }
20723          program { name: "go_disabled";
20724             signal: "elm,state,disabled";
20725             source: "elm";
20726             action: STATE_SET "disabled" 0.0;
20727             target: "disclip";
20728          }
20729          program { name: "go_enabled";
20730             signal: "elm,state,enabled";
20731             source: "elm";
20732             action: STATE_SET "default" 0.0;
20733             target: "disclip";
20734          }
20735       }
20736    }
20737
20738 // 4.3.1
20739    group { name: "elm/genlist/item/dialogue/bg/2text.2icon/default";
20740       alias: "elm/genlist/item_odd/dialogue/bg/2text.2icon/default";
20741       alias: "elm/genlist/item_compress/dialogue/bg/2text.2icon/default";
20742       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.2icon/default";
20743       alias: "elm/layout/dialogue/bg/2text.2icon";
20744       data.item: "stacking" "above";
20745       data.item: "selectraise" "on";
20746       data.item: "texts" "elm.text.1 elm.text.2";
20747       data.item: "contents" "elm.icon.1 elm.icon.2";
20748       images {
20749           image: "00_list_thumbnail_bg.png" COMP;
20750       }
20751       parts {
20752          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
20753          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_48_INC )
20754          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_48_INC )
20755          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20756          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20757          part { name: "elm.icon1.bg";
20758             scale: 1;
20759             description { state: "default" 0.0;
20760                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
20761                fixed: 1 1;
20762                align: 0.0 0.52;
20763                rel1 {
20764                   relative: 1.0 0.5;
20765                   to_x: "elm.padding.left";
20766                }
20767                rel2 {
20768                   relative: 1.0 0.5;
20769                   to_x: "elm.padding.left";
20770                }
20771                image {
20772                   normal: "00_list_thumbnail_bg.png";
20773                   border: 1 1 1 1;
20774                   border_scale: 1;
20775                   middle: NONE;
20776                }
20777             }
20778          }
20779          part { name: "elm.icon.1";
20780             type: SWALLOW;
20781             description { state: "default" 0.0;
20782                rel1.to: "elm.icon1.bg";
20783                rel2.to: "elm.icon1.bg";
20784             }
20785          }
20786          part { name: "elm.padding.icon1.right";
20787             type: RECT;
20788             mouse_events: 0;
20789             scale: 1;
20790             description { state: "default" 0.0;
20791                min: GENLIST_PADDING_24_INC 0;
20792                fixed: 1 0;
20793                rel1 {
20794                    relative: 1.0 0.0;
20795                    to_x: "elm.icon1.bg";
20796                }
20797                rel2.to_x: "elm.icon1.bg";
20798                visible: 0;
20799                align: 0.0 0.5;
20800             }
20801          }
20802          part { name: "elm.icon.2";
20803             type: SWALLOW;
20804             scale: 1;
20805             description { state: "default" 0.0;
20806                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
20807                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
20808                fixed: 1 1;
20809                rel1 {
20810                   relative: 0.0 0.5;
20811                   to_x: "elm.padding.right";
20812                }
20813                rel2 {
20814                   relative: 0.0 0.5;
20815                   to_x: "elm.padding.right";
20816                }
20817                align: 1.0 0.5;
20818             }
20819          }
20820          part { name: "elm.padding.icon2.right";
20821             type: RECT;
20822             mouse_events: 0;
20823             scale: 1;
20824             description { state: "default" 0.0;
20825                min: GENLIST_PADDING_16_INC 0;
20826                fixed: 1 0;
20827                rel1.to_x: "elm.icon.2";
20828                rel2 {
20829                   relative: 0.0 1.0;
20830                   to_x: "elm.icon.2";
20831                }
20832                rel2.to_x: "elm.icon.2";
20833                visible: 0;
20834                align: 1.0 0.5;
20835             }
20836          }
20837          part { name: "elm.text.1";
20838             clip_to: "disclip";
20839             type: TEXT;
20840             mouse_events: 0;
20841             scale: 1;
20842             description { state: "default" 0.0;
20843                min: 0 GENLIST_SIZE_54_INC;
20844                fixed: 0 1;
20845                align: 0 0;
20846                rel1 {
20847                   relative: 1.0 1.0;
20848                   to_x: "elm.padding.icon1.right";
20849                   to_y: "elm.padding.top";
20850                }
20851                rel2 {
20852                   relative: 0.0 1.0;
20853                   to_x: "elm.padding.icon2.right";
20854                   to_y: "elm.padding.top";
20855                }
20856                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
20857                text {
20858                   font: "SLP:style=Roman";
20859                   size: GENLIST_FONT_48_INC;
20860                   align: 0.0 0.5;
20861                   text_class: "list_item";
20862                }
20863             }
20864          }
20865          part { name: "elm.padding.text.1.bottom";
20866             type: RECT;
20867             mouse_events: 0;
20868             scale: 1;
20869             description { state: "default" 0.0;
20870                min: 0 GENLIST_PADDING_8_INC;
20871                fixed: 0 1;
20872                rel1 {
20873                    relative: 0.0 1.0;
20874                    to_y: "elm.text.1";
20875                }
20876                rel2.to_y: "elm.text.1";
20877                visible: 0;
20878                align: 0.0 0.0;
20879             }
20880          }
20881          part { name: "elm.text.2";
20882             clip_to: "disclip";
20883             type: TEXT;
20884             mouse_events: 0;
20885             scale: 1;
20886             description { state: "default" 0.0;
20887                rel1 {
20888                   relative: 1.0 1.0;
20889                   to_x: "elm.padding.icon1.right";
20890                   to_y: "elm.padding.text.1.bottom";
20891                }
20892                rel2 {
20893                   relative: 0.0 0.0;
20894                   to_x: "elm.padding.icon2.right";
20895                   to_y: "elm.padding.bottom";
20896                }
20897                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
20898                text {
20899                   font: "SLP:style=Medium";
20900                   size: GENLIST_FONT_32_INC;
20901                   align: 0.0 0.5;
20902                   text_class: "slp_medium";
20903                }
20904             }
20905          }
20906          GENLIST_PART_DISCLIP
20907       }
20908       programs {
20909          // signal: elm,state,%s,active
20910          //   a "check" item named %s went active
20911          // signal: elm,state,%s,passive
20912          //   a "check" item named %s went passive
20913          // default is passive
20914          /*program { name: "go_active";
20915             signal: "elm,state,selected";
20916             source: "elm";
20917             action: STATE_SET "selected" 0.0;
20918             target: "elm.text";
20919             target: "elm.text.sub";
20920          }
20921          program { name: "go_passive";
20922             signal: "elm,state,unselected";
20923             source: "elm";
20924             action: STATE_SET "default" 0.0;
20925             target: "elm.text";
20926             target: "elm.text.sub";
20927             transition: LINEAR 0.1;
20928          }*/
20929          program { name: "go_disabled";
20930             signal: "elm,state,disabled";
20931             source: "elm";
20932             action: STATE_SET "disabled" 0.0;
20933             target: "disclip";
20934          }
20935          program { name: "go_enabled";
20936             signal: "elm,state,enabled";
20937             source: "elm";
20938             action: STATE_SET "default" 0.0;
20939             target: "disclip";
20940          }
20941       }
20942    }
20943
20944 // 4.3.2
20945    group { name: "elm/genlist/item/dialogue/bg/3text.2icon/default";
20946       alias: "elm/genlist/item_odd/dialogue/bg/3text.2icon/default";
20947       alias: "elm/genlist/item_compress/dialogue/bg/3text.2icon/default";
20948       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.2icon/default";
20949       alias: "elm/layout/dialogue/bg/3text.2icon";
20950       data.item: "stacking" "above";
20951       data.item: "selectraise" "on";
20952       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
20953       data.item: "contents" "elm.icon.1 elm.icon.2";
20954       images {
20955           image: "00_list_thumbnail_bg.png" COMP;
20956       }
20957       parts {
20958          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_142_INC )
20959          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
20960          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
20961          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
20962          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20963          part { name: "elm.padding.icon.bottom";
20964             type: RECT;
20965             mouse_events: 0;
20966             scale: 1;
20967             description { state: "default" 0.0;
20968                min: 0 1;
20969                fixed: 0 1;
20970                rel1 {
20971                   relative: 0.0 1.0;
20972                   to_x: "elm.padding.right";
20973                }
20974                rel2 {
20975                   relative: 0.0 1.0;
20976                   to_x: "elm.padding.right";
20977                }
20978                align: 1.0 1.0;
20979                visible: 0;
20980             }
20981          }
20982          part { name: "elm.icon1.bg";
20983             scale: 1;
20984             description { state: "default" 0.0;
20985                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
20986                fixed: 1 1;
20987                align: 1.0 0.0;
20988                rel1 {
20989                   relative: 0.0 0.0;
20990                   to_x: "elm.padding.right";
20991                }
20992                rel2 {
20993                   relative: 0.0 0.0;
20994                   to_x: "elm.padding.right";
20995                   to_y: "elm.padding.icon.bottom";
20996                }
20997                image {
20998                   normal: "00_list_thumbnail_bg.png";
20999                   border: 1 1 1 1;
21000                   border_scale: 1;
21001                   middle: NONE;
21002                }
21003             }
21004          }
21005          part { name: "elm.icon.1";
21006             type: SWALLOW;
21007             description { state: "default" 0.0;
21008                rel1.to: "elm.icon1.bg";
21009                rel2.to: "elm.icon1.bg";
21010             }
21011          }
21012          part { name: "elm.padding.icon1.left";
21013             type: RECT;
21014             mouse_events: 0;
21015             scale: 1;
21016             description { state: "default" 0.0;
21017                min: GENLIST_PADDING_16_INC 0;
21018                fixed: 1 0;
21019                rel1 {
21020                    relative: 0.0 0.0;
21021                    to_x: "elm.icon1.bg";
21022                }
21023                rel2 {
21024                    relative: 0.0 1.0;
21025                    to_x: "elm.icon1.bg";
21026                }
21027                visible: 0;
21028                align: 0.0 0.5;
21029             }
21030          }
21031          part { name: "elm.icon.2";
21032             type: SWALLOW;
21033             scale: 1;
21034             description { state: "default" 0.0;
21035                min: GENLIST_ICON_SIZE_64 GENLIST_ICON_SIZE_64;
21036                max: GENLIST_ICON_SIZE_64 GENLIST_ICON_SIZE_64;
21037                fixed: 1 1;
21038                rel1 {
21039                   relative: 0.0 0.5;
21040                   to_x: "elm.padding.icon1.left";
21041                }
21042                rel2 {
21043                   relative: 0.0 0.5;
21044                   to_x: "elm.padding.icon1.left";
21045                }
21046                align: 1.0 0.5;
21047             }
21048          }
21049          part { name: "elm.padding.icon2.left";
21050             type: RECT;
21051             mouse_events: 0;
21052             scale: 1;
21053             description { state: "default" 0.0;
21054                min: GENLIST_PADDING_16_INC 0;
21055                fixed: 1 0;
21056                rel1.to_x: "elm.icon.2";
21057                rel2 {
21058                   relative: 0.0 1.0;
21059                   to_x: "elm.icon.2";
21060                }
21061                rel2.to_x: "elm.icon.2";
21062                visible: 0;
21063                align: 1.0 0.5;
21064             }
21065          }
21066          part { name: "elm.text.1";
21067             clip_to: "disclip";
21068             type: TEXT;
21069             mouse_events: 0;
21070             scale: 1;
21071             description { state: "default" 0.0;
21072                min: 0 GENLIST_SIZE_54_INC;
21073                fixed: 0 1;
21074                align: 0 0;
21075                rel1 {
21076                   relative: 1.0 1.0;
21077                   to_x: "elm.padding.left";
21078                   to_y: "elm.padding.top";
21079                }
21080                rel2 {
21081                   relative: 0.0 1.0;
21082                   to_x: "elm.padding.icon2.left";
21083                   to_y: "elm.padding.top";
21084                }
21085                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
21086                text {
21087                   font: "SLP:style=Roman";
21088                   size: GENLIST_FONT_48_INC;
21089                   align: 0.0 0.5;
21090                   text_class: "list_item";
21091                }
21092             }
21093          }
21094          part { name: "elm.padding.text.1.bottom";
21095             type: RECT;
21096             mouse_events: 0;
21097             scale: 1;
21098             description { state: "default" 0.0;
21099                min: 0 GENLIST_PADDING_8_INC;
21100                fixed: 0 1;
21101                rel1 {
21102                    relative: 0.0 1.0;
21103                    to_y: "elm.text.1";
21104                }
21105                rel2.to_y: "elm.text.1";
21106                visible: 0;
21107                align: 0.0 0.0;
21108             }
21109          }
21110          part { name: "elm.text.2";
21111             clip_to: "disclip";
21112             type: TEXT;
21113             mouse_events: 0;
21114             scale: 1;
21115             description { state: "default" 0.0;
21116                rel1 {
21117                   relative: 1.0 1.0;
21118                   to_x: "elm.padding.left";
21119                   to_y: "elm.padding.text.1.bottom";
21120                }
21121                rel2 {
21122                   relative: 0.0 0.0;
21123                   to_x: "elm.padding.icon2.left";
21124                   to_y: "elm.text.3";
21125                }
21126                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
21127                text {
21128                   font: "SLP:style=Medium";
21129                   size: GENLIST_FONT_32_INC;
21130                   align: 0.0 0.5;
21131                   text_class: "slp_medium";
21132                }
21133             }
21134          }
21135          part { name: "elm.text.3";
21136             clip_to: "disclip";
21137             type: TEXT;
21138             mouse_events: 0;
21139             scale: 1;
21140             description { state: "default" 0.0;
21141                min: 0 GENLIST_ICON_SMALL_SIZE;
21142                fixed: 0 1;
21143                align: 0 1;
21144                rel1 {
21145                   relative: 1.0 0.0;
21146                   to_x: "elm.padding.left";
21147                   to_y: "elm.padding.bottom";
21148                }
21149                rel2 {
21150                   relative: 0.0 0.0;
21151                   to_x: "elm.padding.icon2.left";
21152                   to_y: "elm.padding.bottom";
21153                }
21154                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
21155                text {
21156                   font: "SLP:style=Medium";
21157                   size: GENLIST_FONT_32_INC;
21158                   align: 0.0 0.5;
21159                   text_class: "slp_medium";
21160                }
21161             }
21162          }
21163          GENLIST_PART_DISCLIP
21164       }
21165       programs {
21166          // signal: elm,state,%s,active
21167          //   a "check" item named %s went active
21168          // signal: elm,state,%s,passive
21169          //   a "check" item named %s went passive
21170          // default is passive
21171          /*program { name: "go_active";
21172             signal: "elm,state,selected";
21173             source: "elm";
21174             action: STATE_SET "selected" 0.0;
21175             target: "elm.text";
21176             target: "elm.text.sub";
21177          }
21178          program { name: "go_passive";
21179             signal: "elm,state,unselected";
21180             source: "elm";
21181             action: STATE_SET "default" 0.0;
21182             target: "elm.text";
21183             target: "elm.text.sub";
21184             transition: LINEAR 0.1;
21185          }*/
21186          program { name: "go_disabled";
21187             signal: "elm,state,disabled";
21188             source: "elm";
21189             action: STATE_SET "disabled" 0.0;
21190             target: "disclip";
21191          }
21192          program { name: "go_enabled";
21193             signal: "elm,state,enabled";
21194             source: "elm";
21195             action: STATE_SET "default" 0.0;
21196             target: "disclip";
21197          }
21198       }
21199    }
21200
21201 // 4.3.3
21202    group { name: "elm/genlist/item/dialogue/bg/5text.2icon/default";
21203       alias: "elm/genlist/item_odd/dialogue/bg/5text.2icon/default";
21204       alias: "elm/genlist/item_compress/dialogue/bg/5text.2icon/default";
21205       alias: "elm/genlist/item_compress_odd/dialogue/bg/5text.2icon/default";
21206       alias: "elm/layout/dialogue/bg/5text.2icon";
21207       data.item: "stacking" "above";
21208       data.item: "selectraise" "on";
21209       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
21210       data.item: "contents" "elm.icon.1 elm.icon.2";
21211       images {
21212           image: "00_list_thumbnail_bg.png" COMP;
21213       }
21214       parts {
21215          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_182_INC )
21216          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_14_INC )
21217          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_14_INC )
21218          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21219          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21220          part { name: "elm.icon1.bg";
21221             scale: 1;
21222             description { state: "default" 0.0;
21223                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
21224                fixed: 1 1;
21225                align: 0.0 0.5;
21226                rel1 {
21227                   relative: 1.0 0.5;
21228                   to_x: "elm.padding.left";
21229                }
21230                rel2 {
21231                   relative: 1.0 0.5;
21232                   to_x: "elm.padding.left";
21233                }
21234                image {
21235                   normal: "00_list_thumbnail_bg.png";
21236                   border: 1 1 1 1;
21237                   border_scale: 1;
21238                   middle: NONE;
21239                }
21240             }
21241          }
21242          part { name: "elm.icon.1";
21243             type: SWALLOW;
21244             description { state: "default" 0.0;
21245                rel1.to: "elm.icon1.bg";
21246                rel2.to: "elm.icon1.bg";
21247             }
21248          }
21249          part { name: "elm.padding.icon1.right";
21250             type: RECT;
21251             mouse_events: 0;
21252             scale: 1;
21253             description { state: "default" 0.0;
21254                min: GENLIST_PADDING_16_INC 0;
21255                fixed: 1 0;
21256                rel1 {
21257                    relative: 1.0 0.0;
21258                    to_x: "elm.icon1.bg";
21259                }
21260                rel2.to_x: "elm.icon1.bg";
21261                visible: 0;
21262                align: 0.0 0.5;
21263             }
21264          }
21265          part { name: "elm.text.1";
21266             clip_to: "disclip";
21267             type: TEXT;
21268             mouse_events: 0;
21269             scale: 1;
21270             description { state: "default" 0.0;
21271                min: 0 GENLIST_SIZE_38_INC;
21272                fixed: 0 1;
21273                rel1 {
21274                   relative: 1.0 1.0;
21275                   to_x: "elm.padding.icon1.right";
21276                   to_y: "elm.padding.top";
21277                }
21278                rel2 {
21279                   relative: 0.0 1.0;
21280                   to_x: "elm.padding.right";
21281                   to_y: "elm.padding.top";
21282                }
21283                align: 0.0 0.0;
21284                color: GENLIST_DIALOGUE_FONT_APPS_NAME_COLOR_INC;
21285                text {
21286                   font: "SLP:style=Medium";
21287                   size: GENLIST_FONT_32_INC;
21288                   align: 0.0 0.5;
21289                   text_class: "list_item";
21290                }
21291             }
21292          }
21293          part { name: "elm.text.2";
21294             clip_to: "disclip";
21295             type: TEXT;
21296             mouse_events: 0;
21297             scale: 1;
21298             description { state: "default" 0.0;
21299                min: 0 GENLIST_SIZE_38_INC;
21300                fixed: 0 1;
21301                rel1 {
21302                   relative: 1.0 1.0;
21303                   to_x: "elm.padding.icon1.right";
21304                   to_y: "elm.text.1";
21305                }
21306                rel2 {
21307                   relative: 0.0 1.0;
21308                   to_x: "elm.padding.right";
21309                   to_y: "elm.text.1";
21310                }
21311                align: 0.0 0.0;
21312                color: GENLIST_DIALOGUE_FONT_APPS_INC_COLOR_INC;
21313                text {
21314                   font: "SLP:style=Medium";
21315                   size: GENLIST_FONT_28_INC;
21316                   align: 0.0 0.5;
21317                   text_class: "slp_medium";
21318                }
21319             }
21320          }
21321          part { name: "elm.icon.2";
21322             clip_to: "disclip";
21323             type: SWALLOW;
21324             mouse_events: 0;
21325             scale: 1;
21326             description { state: "default" 0.0;
21327                fixed: 1 1;
21328                rel1 {
21329                   relative: 1.0 0.0;
21330                   to_x: "elm.padding.icon1.right";
21331                   to_y: "elm.text.3";
21332                }
21333                rel2 {
21334                   relative: 1.0 1.0;
21335                   to_x: "elm.padding.icon1.right";
21336                   to_y: "elm.text.3";
21337                }
21338                align: 0.0 0.5;
21339             }
21340          }
21341          part { name: "elm.padding.icon2.right";
21342             type: RECT;
21343             mouse_events: 0;
21344             scale: 1;
21345             description { state: "default" 0.0;
21346                min: GENLIST_PADDING_16_INC 0;
21347                fixed: 1 0;
21348                rel1 {
21349                    relative: 1.0 0.0;
21350                    to_x: "elm.icon.2";
21351                }
21352                rel2.to_x: "elm.icon.2";
21353                visible: 0;
21354                align: 0.0 0.5;
21355             }
21356          }
21357          part { name: "elm.text.3";
21358             clip_to: "disclip";
21359             type: TEXT;
21360             mouse_events: 0;
21361             scale: 1;
21362             description { state: "default" 0.0;
21363                min: 0 GENLIST_SIZE_38_INC;
21364                fixed: 0 1;
21365                rel1 {
21366                   relative: 1.0 1.0;
21367                   to_x: "elm.padding.icon2.right";
21368                   to_y: "elm.text.2";
21369                }
21370                rel2 {
21371                   relative: 0.0 1.0;
21372                   to_x: "elm.padding.right";
21373                   to_y: "elm.text.2";
21374                }
21375                align: 0.0 0.0;
21376                color: GENLIST_DIALOGUE_FONT_APPS_RATING_COLOR_INC;
21377                text {
21378                   font: "SLP:style=Medium";
21379                   size: GENLIST_FONT_28_INC;
21380                   align: 0.0 0.5;
21381                   text_class: "slp_medium";
21382                }
21383             }
21384          }
21385          part { name: "elm.text.4";
21386             clip_to: "disclip";
21387             type: TEXT;
21388             mouse_events: 0;
21389             scale: 1;
21390             description { state: "default" 0.0;
21391                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
21392                fixed: 1 1;
21393                align: 0 1;
21394                rel1 {
21395                   relative: 1.0 0.0;
21396                   to_x: "elm.padding.icon1.right";
21397                   to_y: "elm.padding.bottom";
21398                }
21399                rel2 {
21400                   relative: 1.0 0.0;
21401                   to_x: "elm.padding.icon1.right";
21402                   to_y: "elm.padding.bottom";
21403                }
21404                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_ORIGINAL_COLOR_INC;
21405                text {
21406                   font: "SLP:style=Medium";
21407                   size: GENLIST_FONT_28_INC;
21408                   align: 0.0 0.5;
21409                   text_class: "slp_medium";
21410                }
21411             }
21412          }
21413          part { name: "elm.padding.text4.right";
21414             type: RECT;
21415             mouse_events: 0;
21416             scale: 1;
21417             description { state: "default" 0.0;
21418                min: GENLIST_PADDING_16_INC 0;
21419                fixed: 1 0;
21420                rel1 {
21421                    relative: 1.0 0.0;
21422                    to_x: "elm.text.4";
21423                }
21424                rel2.to_x: "elm.text.4";
21425                visible: 0;
21426                align: 0.0 0.5;
21427             }
21428          }
21429          part { name: "elm.text.5";
21430             clip_to: "disclip";
21431             type: TEXT;
21432             mouse_events: 0;
21433             scale: 1;
21434             description { state: "default" 0.0;
21435                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
21436                fixed: 1 1;
21437                align: 0 1;
21438                rel1 {
21439                   relative: 1.0 0.0;
21440                   to_x: "elm.padding.text4.right";
21441                   to_y: "elm.padding.bottom";
21442                }
21443                rel2 {
21444                   relative: 1.0 0.0;
21445                   to_x: "elm.padding.text4.right";
21446                   to_y: "elm.padding.bottom";
21447                }
21448                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_SALE_COLOR_INC;
21449                text {
21450                   font: "SLP:style=Medium";
21451                   size: GENLIST_FONT_28_INC;
21452                   align: 0.0 0.5;
21453                   text_class: "slp_medium";
21454                }
21455             }
21456          }
21457          GENLIST_PART_DISCLIP
21458       }
21459       programs {
21460          // signal: elm,state,%s,active
21461          //   a "check" item named %s went active
21462          // signal: elm,state,%s,passive
21463          //   a "check" item named %s went passive
21464          // default is passive
21465          /*program { name: "go_active";
21466             signal: "elm,state,selected";
21467             source: "elm";
21468             action: STATE_SET "selected" 0.0;
21469             target: "elm.text";
21470             target: "elm.text.sub";
21471          }
21472          program { name: "go_passive";
21473             signal: "elm,state,unselected";
21474             source: "elm";
21475             action: STATE_SET "default" 0.0;
21476             target: "elm.text";
21477             target: "elm.text.sub";
21478             transition: LINEAR 0.1;
21479          }*/
21480          program { name: "go_disabled";
21481             signal: "elm,state,disabled";
21482             source: "elm";
21483             action: STATE_SET "disabled" 0.0;
21484             target: "disclip";
21485          }
21486          program { name: "go_enabled";
21487             signal: "elm,state,enabled";
21488             source: "elm";
21489             action: STATE_SET "default" 0.0;
21490             target: "disclip";
21491          }
21492       }
21493    }
21494
21495    // 4.1.9
21496    group { name: "elm/genlist/item/dialogue/1icon/default";
21497       alias: "elm/genlist/item_odd/dialogue/1icon/default";
21498       alias: "elm/genlist/item_compress/dialogue/1icon/default";
21499       alias: "elm/genlist/item_compress_odd/dialogue/1icon/default";
21500       alias: "elm/layout/dialogue/1icon";
21501       data.item: "stacking" "above";
21502       data.item: "selectraise" "on";
21503       data.item: "contents" "elm.icon";
21504
21505       parts {
21506          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
21507          GENLIST_PART_DIALOGUE_BG_IMAGE
21508          GENLIST_PART_BOTTOM_LINE
21509          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21510          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21511          GENLIST_PART_DIALOGUE_ITEM
21512          GENLIST_PART_DIALOGUE_RIGHT_LINE
21513          part { name: "elm.icon";
21514             clip_to: "disclip";
21515             type: SWALLOW;
21516             scale: 1;
21517             description { state: "default" 0.0;
21518                rel1 {
21519                   relative: 1.0 0.0;
21520                   to_x: "elm.padding.left";
21521                }
21522                rel2 {
21523                   relative: 0.0 1.0;
21524                   to_x: "elm.padding.right";
21525                }
21526             }
21527          }
21528          GENLIST_PART_DISCLIP
21529       }
21530       programs {
21531          // signal: elm,state,%s,active
21532          //   a "check" item named %s went active
21533          // signal: elm,state,%s,passive
21534          //   a "check" item named %s went passive
21535          // default is passive
21536          /*program { name: "go_active";
21537             signal: "elm,state,selected";
21538             source: "elm";
21539             action: STATE_SET "selected" 0.0;
21540             target: "bg_image";
21541             target: "elm.text";
21542          }
21543          program { name: "go_passive";
21544             signal: "elm,state,unselected";
21545             source: "elm";
21546             action: STATE_SET "default" 0.0;
21547             target: "bg_image";
21548             target: "elm.text";
21549             transition: LINEAR 0.1;
21550          }*/
21551          program { name: "go_disabled";
21552             signal: "elm,state,disabled";
21553             source: "elm";
21554             action: STATE_SET "disabled" 0.0;
21555             target: "disclip";
21556          }
21557          program { name: "go_enabled";
21558             signal: "elm,state,enabled";
21559             source: "elm";
21560             action: STATE_SET "default" 0.0;
21561             target: "disclip";
21562          }
21563       }
21564    }
21565
21566    group { name: "elm/genlist/item/dialogue/bg/1icon/default";
21567       alias: "elm/genlist/item_odd/dialogue/bg/1icon/default";
21568       alias: "elm/genlist/item_compress/dialogue/bg/1icon/default";
21569       alias: "elm/genlist/item_compress_odd/dialogue/bg/1icon/default";
21570       alias: "elm/layout/dialogue/bg/1icon";
21571       data.item: "stacking" "above";
21572       data.item: "selectraise" "on";
21573       data.item: "contents" "elm.icon";
21574
21575       parts {
21576          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
21577          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21578          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21579          part { name: "elm.icon";
21580             clip_to: "disclip";
21581             type: SWALLOW;
21582             scale: 1;
21583             description { state: "default" 0.0;
21584                rel1 {
21585                   relative: 1.0 0.0;
21586                   to_x: "elm.padding.left";
21587                }
21588                rel2 {
21589                   relative: 0.0 1.0;
21590                   to_x: "elm.padding.right";
21591                }
21592             }
21593          }
21594          GENLIST_PART_DISCLIP
21595       }
21596       programs {
21597          // signal: elm,state,%s,active
21598          //   a "check" item named %s went active
21599          // signal: elm,state,%s,passive
21600          //   a "check" item named %s went passive
21601          // default is passive
21602          program { name: "go_disabled";
21603             signal: "elm,state,disabled";
21604             source: "elm";
21605             action: STATE_SET "disabled" 0.0;
21606             target: "disclip";
21607          }
21608          program { name: "go_enabled";
21609             signal: "elm,state,enabled";
21610             source: "elm";
21611             action: STATE_SET "default" 0.0;
21612             target: "disclip";
21613          }
21614       }
21615    }
21616
21617    group { name: "elm/genlist/item/dialogue/bg/2icon/default";
21618       alias: "elm/genlist/item_odd/dialogue/bg/2icon/default";
21619       alias: "elm/genlist/item_compress/dialogue/bg/2icon/default";
21620       alias: "elm/genlist/item_compress_odd/dialogue/bg/2icon/default";
21621       alias: "elm/layout/dialogue/bg/2icon";
21622       data.item: "stacking" "above";
21623       data.item: "selectraise" "on";
21624       data.item: "contents" "elm.icon.1 elm.icon.2";
21625
21626       parts {
21627          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
21628          part { name: "elm.icon.1";
21629             clip_to: "disclip";
21630             type: SWALLOW;
21631             description { state: "default" 0.0;
21632                rel1.relative: 0.021 0.0;
21633                rel2.relative: 0.492 1.0;
21634             }
21635          }
21636          part { name: "elm.icon.2";
21637             clip_to: "disclip";
21638             type: SWALLOW;
21639             description { state: "default" 0.0;
21640                rel1.relative: 0.51 0.0;
21641                rel2.relative: 0.979 1.0;
21642             }
21643          }
21644          GENLIST_PART_DISCLIP
21645       }
21646       programs {
21647          // signal: elm,state,%s,active
21648          //   a "check" item named %s went active
21649          // signal: elm,state,%s,passive
21650          //   a "check" item named %s went passive
21651          // default is passive
21652          program { name: "go_disabled";
21653             signal: "elm,state,disabled";
21654             source: "elm";
21655             action: STATE_SET "disabled" 0.0;
21656             target: "disclip";
21657          }
21658          program { name: "go_enabled";
21659             signal: "elm,state,enabled";
21660             source: "elm";
21661             action: STATE_SET "default" 0.0;
21662             target: "disclip";
21663          }
21664       }
21665    }
21666
21667    group { name: "elm/genlist/item/dialogue/bg/3icon/default";
21668       alias: "elm/genlist/item_odd/dialogue/bg/3icon/default";
21669       alias: "elm/genlist/item_compress/dialogue/bg/3icon/default";
21670       alias: "elm/genlist/item_compress_odd/dialogue/bg/3icon/default";
21671
21672       alias: "elm/genlist/item/dialogue.3icon/default";
21673       alias: "elm/genlist/item_odd/dialogue.3icon/default";
21674       alias: "elm/genlist/item_compress/dialogue.3icon/default";
21675       alias: "elm/genlist/item_compress_odd/dialogue.3icon/default";
21676
21677       alias: "elm/layout/dialogue/bg/3icon";
21678       alias: "elm/layout/dialogue/dialogue.3icon";
21679
21680       data.item: "stacking" "above";
21681       data.item: "selectraise" "on";
21682       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
21683
21684       parts {
21685          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
21686          part { name: "elm.icon.1";
21687             clip_to: "disclip";
21688             type: SWALLOW;
21689             description { state: "default" 0.0;
21690                rel1.relative: 0.021 0.0;
21691                rel2.relative: 0.327 1.0;
21692             }
21693          }
21694          part { name: "elm.icon.2";
21695             clip_to: "disclip";
21696             type: SWALLOW;
21697             description { state: "default" 0.0;
21698                rel1.relative: 0.348 0.0;
21699                rel2.relative: 0.652 1.0;
21700             }
21701          }
21702          part { name: "elm.icon.3";
21703             clip_to: "disclip";
21704             type: SWALLOW;
21705             description { state: "default" 0.0;
21706                rel1.relative: 0.673 0.0;
21707                rel2.relative: 0.979 1.0;
21708             }
21709          }
21710          GENLIST_PART_DISCLIP
21711       }
21712       programs {
21713          // signal: elm,state,%s,active
21714          //   a "check" item named %s went active
21715          // signal: elm,state,%s,passive
21716          //   a "check" item named %s went passive
21717          // default is passive
21718          program { name: "go_disabled";
21719             signal: "elm,state,disabled";
21720             source: "elm";
21721             action: STATE_SET "disabled" 0.0;
21722             target: "disclip";
21723          }
21724          program { name: "go_enabled";
21725             signal: "elm,state,enabled";
21726             source: "elm";
21727             action: STATE_SET "default" 0.0;
21728             target: "disclip";
21729          }
21730       }
21731    }
21732
21733    group { name: "elm/genlist/item/dialogue.3icon.2/default";
21734       alias: "elm/genlist/item_odd/dialogue.3icon.2/default";
21735       alias: "elm/genlist/item_compress/dialogue.3icon.2/default";
21736       alias: "elm/genlist/item_compress_odd/dialogue.3icon.2/default";
21737       alias: "elm/layout/dialogue/dialogue.3icon.2";
21738       data.item: "stacking" "above";
21739       data.item: "selectraise" "on";
21740       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
21741
21742       parts {
21743          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_89_INC )
21744          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21745          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21746          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
21747          part { name: "elm.icon.1";
21748             clip_to: "disclip";
21749             type: SWALLOW;
21750             description { state: "default" 0.0;
21751                min: GENLIST_SIZE_234_INC 0;
21752                fixed: 1 0;
21753                rel1 {
21754                   relative: 0.0 1.0;
21755                   to_x: "elm.padding.right";
21756                   to_y: "elm.padding.top";
21757                }
21758                rel2 {
21759                   relative: 0.0 1.0;
21760                   to_x: "elm.padding.right";
21761                }
21762                align: 1.0 0.5;
21763             }
21764          }
21765          part { name: "elm.padding.icon.1.left";
21766             clip_to: "disclip";
21767             type: RECT;
21768             mouse_events: 0;
21769             scale: 1;
21770             description { state: "default" 0.0;
21771                min: GENLIST_PADDING_16_INC 0;
21772                fixed: 1 0;
21773                rel1.to_x: "elm.icon.1";
21774                rel2 {
21775                   relative: 0.0 1.0;
21776                   to_x: "elm.icon.1";
21777                }
21778                visible: 0;
21779                align: 1.0 0.5;
21780             }
21781          }
21782          part { name: "elm.icon.2";
21783             clip_to: "disclip";
21784             type: SWALLOW;
21785             description { state: "default" 0.0;
21786                min: GENLIST_SIZE_234_INC 0;
21787                fixed: 1 0;
21788                rel1 {
21789                   relative: 0.0 1.0;
21790                   to_x: "elm.padding.icon.1.left";
21791                   to_y: "elm.padding.top";
21792                }
21793                rel2 {
21794                   relative: 0.0 1.0;
21795                   to_x: "elm.padding.icon.1.left";
21796                }
21797                align: 1.0 0.5;
21798             }
21799          }
21800          part { name: "elm.padding.icon.2.left";
21801             clip_to: "disclip";
21802             type: RECT;
21803             mouse_events: 0;
21804             scale: 1;
21805             description { state: "default" 0.0;
21806                min: GENLIST_PADDING_16_INC 0;
21807                fixed: 1 0;
21808                rel1.to_x: "elm.icon.2";
21809                rel2 {
21810                   relative: 0.0 1.0;
21811                   to_x: "elm.icon.2";
21812                }
21813                visible: 0;
21814                align: 1.0 0.5;
21815             }
21816          }
21817          part { name: "elm.icon.3";
21818             clip_to: "disclip";
21819             type: SWALLOW;
21820             description { state: "default" 0.0;
21821                min: GENLIST_SIZE_234_INC 0;
21822                fixed: 1 0;
21823                rel1 {
21824                   relative: 0.0 1.0;
21825                   to_x: "elm.padding.icon.2.left";
21826                   to_y: "elm.padding.top";
21827                }
21828                rel2 {
21829                   relative: 0.0 1.0;
21830                   to_x: "elm.padding.icon.2.left";
21831                }
21832                align: 1.0 0.5;
21833             }
21834          }
21835          GENLIST_PART_DISCLIP
21836       }
21837       programs {
21838          // signal: elm,state,%s,active
21839          //   a "check" item named %s went active
21840          // signal: elm,state,%s,passive
21841          //   a "check" item named %s went passive
21842          // default is passive
21843          program { name: "go_disabled";
21844             signal: "elm,state,disabled";
21845             source: "elm";
21846             action: STATE_SET "disabled" 0.0;
21847             target: "disclip";
21848          }
21849          program { name: "go_enabled";
21850             signal: "elm,state,enabled";
21851             source: "elm";
21852             action: STATE_SET "default" 0.0;
21853             target: "disclip";
21854          }
21855       }
21856    }
21857
21858    group { name: "elm/genlist/item/dialogue.1title.1text.2/default";
21859       alias: "elm/genlist/item_odd/dialogue.1title.1text.2/default";
21860       alias: "elm/genlist/item_compress/dialogue.1title.1text.2/default";
21861       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.2/default";
21862       alias: "elm/layout/dialogue/dialogue.1title.1text.2";
21863       data.item: "stacking" "above";
21864       data.item: "selectraise" "on";
21865       data.item: "texts" "elm.title elm.text";
21866
21867       images {
21868           image: "00_list_img_check.png" COMP;
21869       }
21870
21871       parts {
21872          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
21873          GENLIST_PART_DIALOGUE_BG_IMAGE
21874          GENLIST_PART_BOTTOM_LINE
21875          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
21876          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21877          GENLIST_PART_DIALOGUE_ITEM
21878          GENLIST_PART_DIALOGUE_RIGHT_LINE
21879          part { name: "vertical_line";
21880             type: RECT;
21881             mouse_events: 0;
21882             description { state: "default" 0.0;
21883                min: 1 0;
21884                fixed: 1 0;
21885                color: GENLIST_PART_LIST_LINE_COLOR_INC;
21886                rel1 {
21887                   relative: 1.0 0.0;
21888                   to_x: "elm.title";
21889                }
21890                rel2.to_x: "elm.title";
21891                align: 0.0 0.5;
21892             }
21893          }
21894          part { name: "elm.title";
21895             type: TEXT;
21896             mouse_events: 0;
21897             scale: 1;
21898             description { state: "default" 0.0;
21899                min: GENLIST_SIZE_163_INC 0;
21900                fixed: 1 0;
21901                rel1 {
21902                   relative: 1.0  0.0;
21903                   to_x: "elm.padding.left";
21904                }
21905                rel2.to_x: "elm.padding.left";
21906                align: 0.0 0.5;
21907                color: GENLIST_MULTILINE_TEXT_COLOR;
21908                text {
21909                   font: "SLP:style=Medium";
21910                   size: GENLIST_MULTILINE_TEXT_SIZE;
21911                   min: 0 1;
21912                   align: 0.0 0.5;
21913                   text_class: "slp_medium";
21914                }
21915             }
21916          }
21917          part { name: "elm.padding.title.right";
21918             type: RECT;
21919             mouse_events: 0;
21920             scale: 1;
21921             description { state: "default" 0.0;
21922                min: GENLIST_PADDING_16_INC 0;
21923                fixed: 1 0;
21924                rel1 {
21925                    relative: 1.0 0.0;
21926                    to_x: "vertical_line";
21927                }
21928                rel2.to_x: "vertical_line";
21929                visible: 0;
21930                align: 0.0 0.5;
21931             }
21932          }
21933          part { name: "elm.text";
21934             clip_to: "disclip";
21935             type: TEXT;
21936             mouse_events: 0;
21937             scale: 1;
21938             description { state: "default" 0.0;
21939                rel1 {
21940                   relative: 1.0  0.0;
21941                   to_x: "elm.padding.title.right";
21942                }
21943                rel2.to_x: "elm.padding.title.right";
21944                align: 0.0 0.5;
21945                fixed: 1 1;
21946                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
21947                text {
21948                   font: "SLP:style=Roman";
21949                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
21950                   min: 1 1;
21951                   max: 1 1;
21952                   align: 0.0 0.5;
21953                   text_class: "list_item";
21954                }
21955             }
21956             description { state: "selected" 0.0;
21957                inherit: "default" 0.0;
21958                color: 217 147 26 255;
21959             }
21960          }
21961          part { name: "elm.padding.text.right";
21962             type: RECT;
21963             mouse_events: 0;
21964             scale: 1;
21965             description { state: "default" 0.0;
21966                min: GENLIST_PADDING_11_INC 0;
21967                fixed: 1 0;
21968                rel1 {
21969                    relative: 1.0 0.0;
21970                    to_x: "elm.text";
21971                }
21972                rel2.to_x: "elm.text";
21973                visible: 0;
21974                align: 0.0 0.5;
21975             }
21976          }
21977          part { name: "elm.image.check";
21978             clip_to: "disclip";
21979             mouse_events: 0;
21980             scale: 1;
21981             description { state: "default" 0.0;
21982                image.normal: "00_list_img_check.png";
21983                rel1 {
21984                   relative: 1.0 0.366;
21985                   to_x: "elm.padding.text.right";
21986                }
21987                rel2 {
21988                   relative: 3.857 0.648;
21989                   to_x: "elm.padding.text.right";
21990                }
21991                visible: 0;
21992             }
21993             description { state: "selected" 0.0;
21994                inherit: "default" 0.0;
21995                visible: 1;
21996             }
21997          }
21998          GENLIST_PART_DISCLIP
21999       }
22000       programs {
22001          // signal: elm,state,%s,active
22002          //   a "check" item named %s went active
22003          // signal: elm,state,%s,passive
22004          //   a "check" item named %s went passive
22005          // default is passive
22006          program { name: "go_active";
22007             signal: "elm,state,selected";
22008             source: "elm";
22009             action: STATE_SET "selected" 0.0;
22010             target: "elm.text";
22011             target: "elm.image.check";
22012             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
22013          }
22014          program { name: "go_passive";
22015             signal: "elm,state,unselected";
22016             source: "elm";
22017             action: STATE_SET "default" 0.0;
22018             target: "elm.text";
22019             target: "elm.image.check";
22020             transition: LINEAR 0.1;
22021          }
22022          program { name: "go_disabled";
22023             signal: "elm,state,disabled";
22024             source: "elm";
22025             action: STATE_SET "disabled" 0.0;
22026             target: "disclip";
22027          }
22028          program { name: "go_enabled";
22029             signal: "elm,state,enabled";
22030             source: "elm";
22031             action: STATE_SET "default" 0.0;
22032             target: "disclip";
22033          }
22034          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
22035       }
22036    }
22037
22038    group { name: "elm/genlist/item/dialogue/1title.4text/default";
22039       alias: "elm/genlist/item_odd/dialogue/1title.4text/default";
22040       alias: "elm/genlist/item_compress/dialogue/1title.4text/default";
22041       alias: "elm/genlist/item_compress_odd/dialogue/1title.4text/default";
22042
22043       alias: "elm/genlist/item/dialogue.1title.4text/default";
22044       alias: "elm/genlist/item_odd/dialogue.1title.4text/default";
22045       alias: "elm/genlist/item_compress/dialogue.1title.4text/default";
22046       alias: "elm/genlist/item_compress_odd/dialogue.1title.4text/default";
22047
22048       alias: "elm/layout/dialogue/1title.4text";
22049
22050       data.item: "stacking" "above";
22051       data.item: "selectraise" "on";
22052       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4";
22053
22054       parts {
22055          GENLIST_PART_BASE( GENLIST_HEIGHT_454_INC )
22056          GENLIST_PART_DIALOGUE_BG_IMAGE
22057          GENLIST_PART_BOTTOM_LINE
22058          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
22059          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22060          GENLIST_PART_DIALOGUE_ITEM
22061          GENLIST_PART_DIALOGUE_RIGHT_LINE
22062          part { name: "vertical_line";
22063             type: RECT;
22064             mouse_events: 0;
22065             description { state: "default" 0.0;
22066                min: 1 0;
22067                fixed: 1 0;
22068                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22069                rel1 {
22070                   relative: 1.0 0.0;
22071                   to_x: "elm.title";
22072                }
22073                rel2.to_x: "elm.title";
22074                align: 0.0 0.5;
22075             }
22076          }
22077          part { name: "center1_line";
22078             type: RECT;
22079             mouse_events: 0;
22080             description { state: "default" 0.0;
22081                min: 0 1;
22082                fixed: 0 1;
22083                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22084                rel1 {
22085                   relative: 1.0 0.25;
22086                   to_x: "vertical_line";
22087                }
22088                rel2.relative: 1.0 0.25;
22089                align: 0.5 1.0;
22090             }
22091          }
22092          part { name: "center2_line";
22093             type: RECT;
22094             mouse_events: 0;
22095             description { state: "default" 0.0;
22096                min: 0 1;
22097                fixed: 0 1;
22098                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22099                rel1 {
22100                   relative: 1.0 0.5;
22101                   to_x: "vertical_line";
22102                }
22103                rel2.relative: 1.0 0.5;
22104                align: 0.5 1.0;
22105             }
22106          }
22107          part { name: "center3_line";
22108             type: RECT;
22109             mouse_events: 0;
22110             description { state: "default" 0.0;
22111                min: 0 1;
22112                fixed: 0 1;
22113                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22114                rel1 {
22115                   relative: 1.0 0.75;
22116                   to_x: "vertical_line";
22117                }
22118                rel2.relative: 1.0 0.75;
22119                align: 0.5 1.0;
22120             }
22121          }
22122          part { name: "elm.title";
22123             type: TEXT;
22124             mouse_events: 0;
22125             scale: 1;
22126             description { state: "default" 0.0;
22127                min: GENLIST_SIZE_163_INC 0;
22128                fixed: 1 0;
22129                rel1 {
22130                   relative: 1.0  0.0;
22131                   to_x: "elm.padding.left";
22132                }
22133                rel2.to_x: "elm.padding.left";
22134                align: 0.0 0.5;
22135                color: GENLIST_MULTILINE_TEXT_COLOR;
22136                text {
22137                   font: "SLP:style=Medium";
22138                   size: GENLIST_MULTILINE_TEXT_SIZE;
22139                   min: 0 1;
22140                   align: 0.0 0.5;
22141                   text_class: "slp_medium";
22142                }
22143             }
22144          }
22145          part { name: "elm.padding.title.right";
22146             type: RECT;
22147             mouse_events: 0;
22148             scale: 1;
22149             description { state: "default" 0.0;
22150                min: GENLIST_PADDING_16_INC 0;
22151                fixed: 1 0;
22152                rel1 {
22153                    relative: 1.0 0.0;
22154                    to_x: "elm.title";
22155                }
22156                rel2.to_x: "elm.title";
22157                visible: 0;
22158                align: 0.0 0.5;
22159             }
22160          }
22161          part { name: "elm.text.1";
22162             clip_to: "disclip";
22163             type: TEXT;
22164             mouse_events: 0;
22165             scale: 1;
22166             description { state: "default" 0.0;
22167                rel1 {
22168                   relative: 1.0 0.0;
22169                   to_x: "elm.padding.title.right";
22170                }
22171                rel2 {
22172                   relative: 0.0 0.0;
22173                   to_x: "elm.padding.right";
22174                   to_y: "center1_line";
22175                }
22176                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22177                text {
22178                   font: "SLP:style=Roman";
22179                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22180                   min: 0 1;
22181                   align: 0.0 0.5;
22182                   text_class: "list_item";
22183                }
22184             }
22185          }
22186          part { name: "elm.text.2";
22187             clip_to: "disclip";
22188             type: TEXT;
22189             mouse_events: 0;
22190             scale: 1;
22191             description { state: "default" 0.0;
22192                rel1 {
22193                   relative: 1.0 0.25;
22194                   to_x: "elm.padding.title.right";
22195                }
22196                rel2 {
22197                   relative: 0.0 0.0;
22198                   to_x: "elm.padding.right";
22199                   to_y: "center2_line";
22200                }
22201                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22202                text {
22203                   font: "SLP:style=Roman";
22204                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22205                   min: 0 1;
22206                   align: 0.0 0.5;
22207                   text_class: "list_item";
22208                }
22209             }
22210          }
22211          part { name: "elm.text.3";
22212             clip_to: "disclip";
22213             type: TEXT;
22214             mouse_events: 0;
22215             scale: 1;
22216             description { state: "default" 0.0;
22217                rel1 {
22218                   relative: 1.0  0.5;
22219                   to_x: "elm.padding.title.right";
22220                }
22221                rel2 {
22222                   relative: 0.0 0.0;
22223                   to_x: "elm.padding.right";
22224                   to_y: "center3_line";
22225                }
22226                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22227                text {
22228                   font: "SLP:style=Roman";
22229                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22230                   min: 0 1;
22231                   align: 0.0 0.5;
22232                   text_class: "list_item";
22233                }
22234             }
22235          }
22236          part { name: "elm.text.4";
22237             clip_to: "disclip";
22238             type: TEXT;
22239             mouse_events: 0;
22240             scale: 1;
22241             description { state: "default" 0.0;
22242                rel1 {
22243                   relative: 1.0  0.75;
22244                   to_x: "elm.padding.title.right";
22245                }
22246                rel2 {
22247                   relative: 0.0 0.0;
22248                   to_x: "elm.padding.right";
22249                   to_y: "bottom_line";
22250                }
22251                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22252                text {
22253                   font: "SLP:style=Roman";
22254                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22255                   min: 0 1;
22256                   align: 0.0 0.5;
22257                   text_class: "list_item";
22258                }
22259             }
22260          }
22261          GENLIST_PART_DISCLIP
22262       }
22263       programs {
22264          // signal: elm,state,%s,active
22265          //   a "check" item named %s went active
22266          // signal: elm,state,%s,passive
22267          //   a "check" item named %s went passive
22268          // default is passive
22269          /*program { name: "go_active";
22270             signal: "elm,state,selected";
22271             source: "elm";
22272             action: STATE_SET "selected" 0.0;
22273             target: "elm.text";
22274          }
22275          program { name: "go_passive";
22276             signal: "elm,state,unselected";
22277             source: "elm";
22278             action: STATE_SET "default" 0.0;
22279             target: "elm.text";
22280             transition: LINEAR 0.1;
22281          }*/
22282          program { name: "go_disabled";
22283             signal: "elm,state,disabled";
22284             source: "elm";
22285             action: STATE_SET "disabled" 0.0;
22286             target: "disclip";
22287          }
22288          program { name: "go_enabled";
22289             signal: "elm,state,enabled";
22290             source: "elm";
22291             action: STATE_SET "default" 0.0;
22292             target: "disclip";
22293          }
22294       }
22295    }
22296
22297    group { name: "elm/genlist/item/dialogue/1title.5text/default";
22298       alias: "elm/genlist/item_odd/dialogue/1title.5text/default";
22299       alias: "elm/genlist/item_compress/dialogue/1title.5text/default";
22300       alias: "elm/genlist/item_compress_odd/dialogue/1title.5text/default";
22301       alias: "elm/layout/dialogue/1title.5text";
22302       data.item: "stacking" "above";
22303       data.item: "selectraise" "on";
22304       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
22305       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";
22306
22307       parts {
22308          GENLIST_PART_BASE( GENLIST_HEIGHT_566_INC )
22309          GENLIST_PART_DIALOGUE_BG_IMAGE
22310          GENLIST_PART_BOTTOM_LINE
22311          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
22312          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22313          GENLIST_PART_DIALOGUE_ITEM
22314          GENLIST_PART_DIALOGUE_RIGHT_LINE
22315          part { name: "vertical_line";
22316             type: RECT;
22317             mouse_events: 0;
22318             description { state: "default" 0.0;
22319                min: 1 0;
22320                fixed: 1 0;
22321                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22322                rel1 {
22323                   relative: 1.0 0.0;
22324                   to_x: "elm.title";
22325                }
22326                rel2.to_x: "elm.title";
22327                align: 0.0 0.5;
22328             }
22329          }
22330          part { name: "center1_line";
22331             type: RECT;
22332             mouse_events: 0;
22333             description { state: "default" 0.0;
22334                min: 0 1;
22335                fixed: 0 1;
22336                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22337                rel1 {
22338                   relative: 1.0 0.2;
22339                   to_x: "vertical_line";
22340                }
22341                rel2.relative: 1.0 0.2;
22342                align: 0.5 1.0;
22343             }
22344          }
22345          part { name: "center2_line";
22346             type: RECT;
22347             mouse_events: 0;
22348             description { state: "default" 0.0;
22349                min: 0 1;
22350                fixed: 0 1;
22351                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22352                rel1 {
22353                   relative: 1.0 0.4;
22354                   to_x: "vertical_line";
22355                }
22356                rel2.relative: 1.0 0.4;
22357                align: 0.5 1.0;
22358             }
22359          }
22360          part { name: "center3_line";
22361             type: RECT;
22362             mouse_events: 0;
22363             description { state: "default" 0.0;
22364                min: 0 1;
22365                fixed: 0 1;
22366                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22367                rel1 {
22368                   relative: 1.0 0.6;
22369                   to_x: "vertical_line";
22370                }
22371                rel2.relative: 1.0 0.6;
22372                align: 0.5 1.0;
22373             }
22374          }
22375          part { name: "center4_line";
22376             type: RECT;
22377             mouse_events: 0;
22378             description { state: "default" 0.0;
22379                min: 0 1;
22380                fixed: 0 1;
22381                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22382                rel1 {
22383                   relative: 1.0 0.8;
22384                   to_x: "vertical_line";
22385                }
22386                rel2.relative: 1.0 0.8;
22387                align: 0.5 1.0;
22388             }
22389          }
22390          part { name: "elm.title";
22391             type: TEXT;
22392             mouse_events: 0;
22393             scale: 1;
22394             description { state: "default" 0.0;
22395                min: GENLIST_SIZE_163_INC 0;
22396                fixed: 1 0;
22397                rel1 {
22398                   relative: 1.0  0.0;
22399                   to_x: "elm.padding.left";
22400                }
22401                rel2.to_x: "elm.padding.left";
22402                align: 0.0 0.5;
22403                color: GENLIST_DIALOGUE_FONT_EDIT_MODE_TEXT_01_COLOR_INC;
22404                text {
22405                   font: "SLP:style=Medium";
22406                   size: GENLIST_FONT_32_INC;
22407                   min: 0 1;
22408                   align: 0.0 0.5;
22409                   text_class: "slp_medium";
22410                }
22411             }
22412             GENLIST_DESCRIPTION_FLIP_ENABLED
22413          }
22414          part { name: "elm.flip.content.title";
22415             clip_to: "disclip";
22416             type: SWALLOW;
22417             description { state: "default" 0.0;
22418                visible: 0;
22419                fixed: 1 1;
22420                rel1.to: "elm.title";
22421                rel2.to: "elm.title";
22422             }
22423             description { state: "flip_enabled" 0.0;
22424                inherit: "default" 0.0;
22425                visible: 1;
22426             }
22427          }
22428          part { name: "elm.padding.title.right";
22429             type: RECT;
22430             mouse_events: 0;
22431             scale: 1;
22432             description { state: "default" 0.0;
22433                min: GENLIST_PADDING_16_INC 0;
22434                fixed: 1 0;
22435                rel1 {
22436                    relative: 1.0 0.0;
22437                    to_x: "elm.title";
22438                }
22439                rel2.to_x: "elm.title";
22440                visible: 0;
22441                align: 0.0 0.5;
22442             }
22443          }
22444          part { name: "elm.text.1";
22445             clip_to: "disclip";
22446             type: TEXT;
22447             mouse_events: 0;
22448             scale: 1;
22449             description { state: "default" 0.0;
22450                rel1 {
22451                   relative: 1.0 0.0;
22452                   to_x: "elm.padding.title.right";
22453                }
22454                rel2 {
22455                   relative: 0.0 0.0;
22456                   to_x: "elm.padding.right";
22457                   to_y: "center1_line";
22458                }
22459                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22460                text {
22461                   font: "SLP:style=Roman";
22462                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22463                   min: 0 1;
22464                   align: 0.0 0.5;
22465                   text_class: "list_item";
22466                }
22467             }
22468             GENLIST_DESCRIPTION_FLIP_ENABLED
22469          }
22470          part { name: "elm.flip.content.1";
22471             clip_to: "disclip";
22472             type: SWALLOW;
22473             description { state: "default" 0.0;
22474                visible: 0;
22475                fixed: 1 1;
22476                rel1.to: "elm.text.1";
22477                rel2.to: "elm.text.1";
22478             }
22479             description { state: "flip_enabled" 0.0;
22480                inherit: "default" 0.0;
22481                visible: 1;
22482             }
22483          }
22484          part { name: "elm.text.2";
22485             clip_to: "disclip";
22486             type: TEXT;
22487             mouse_events: 0;
22488             scale: 1;
22489             description { state: "default" 0.0;
22490                rel1 {
22491                   relative: 1.0 0.2;
22492                   to_x: "elm.padding.title.right";
22493                }
22494                rel2 {
22495                   relative: 0.0 0.0;
22496                   to_x: "elm.padding.right";
22497                   to_y: "center2_line";
22498                }
22499                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22500                text {
22501                   font: "SLP:style=Roman";
22502                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22503                   min: 0 1;
22504                   align: 0.0 0.5;
22505                   text_class: "slp_roman";
22506                }
22507             }
22508             GENLIST_DESCRIPTION_FLIP_ENABLED
22509          }
22510          part { name: "elm.flip.content.2";
22511             clip_to: "disclip";
22512             type: SWALLOW;
22513             description { state: "default" 0.0;
22514                visible: 0;
22515                fixed: 1 1;
22516                rel1.to: "elm.text.2";
22517                rel2.to: "elm.text.2";
22518             }
22519             description { state: "flip_enabled" 0.0;
22520                inherit: "default" 0.0;
22521                visible: 1;
22522             }
22523          }
22524          part { name: "elm.text.3";
22525             clip_to: "disclip";
22526             type: TEXT;
22527             mouse_events: 0;
22528             scale: 1;
22529             description { state: "default" 0.0;
22530                rel1 {
22531                   relative: 1.0  0.4;
22532                   to_x: "elm.padding.title.right";
22533                }
22534                rel2 {
22535                   relative: 0.0 0.0;
22536                   to_x: "elm.padding.right";
22537                   to_y: "center3_line";
22538                }
22539                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22540                text {
22541                   font: "SLP:style=Roman";
22542                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22543                   min: 0 1;
22544                   align: 0.0 0.5;
22545                   text_class: "slp_roman";
22546                }
22547             }
22548             GENLIST_DESCRIPTION_FLIP_ENABLED
22549          }
22550          part { name: "elm.flip.content.3";
22551             clip_to: "disclip";
22552             type: SWALLOW;
22553             description { state: "default" 0.0;
22554                visible: 0;
22555                fixed: 1 1;
22556                rel1.to: "elm.text.3";
22557                rel2.to: "elm.text.3";
22558             }
22559             description { state: "flip_enabled" 0.0;
22560                inherit: "default" 0.0;
22561                visible: 1;
22562             }
22563          }
22564          part { name: "elm.text.4";
22565             clip_to: "disclip";
22566             type: TEXT;
22567             mouse_events: 0;
22568             scale: 1;
22569             description { state: "default" 0.0;
22570                rel1 {
22571                   relative: 1.0 0.6;
22572                   to_x: "elm.padding.title.right";
22573                }
22574                rel2 {
22575                   relative: 0.0 0.0;
22576                   to_x: "elm.padding.right";
22577                   to_y: "center4_line";
22578                }
22579                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22580                text {
22581                   font: "SLP:style=Roman";
22582                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22583                   min: 0 1;
22584                   align: 0.0 0.5;
22585                   text_class: "slp_roman";
22586                }
22587             }
22588             GENLIST_DESCRIPTION_FLIP_ENABLED
22589          }
22590          part { name: "elm.flip.content.4";
22591             clip_to: "disclip";
22592             type: SWALLOW;
22593             description { state: "default" 0.0;
22594                visible: 0;
22595                fixed: 1 1;
22596                rel1.to: "elm.text.4";
22597                rel2.to: "elm.text.4";
22598             }
22599             description { state: "flip_enabled" 0.0;
22600                inherit: "default" 0.0;
22601                visible: 1;
22602             }
22603          }
22604          part { name: "elm.text.5";
22605             clip_to: "disclip";
22606             type: TEXT;
22607             mouse_events: 0;
22608             scale: 1;
22609             description { state: "default" 0.0;
22610                rel1 {
22611                   relative: 1.0  0.8;
22612                   to_x: "elm.padding.title.right";
22613                }
22614                rel2 {
22615                   relative: 0.0 0.0;
22616                   to_x: "elm.padding.right";
22617                   to_y: "bottom_line";
22618                }
22619                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22620                text {
22621                   font: "SLP:style=Roman";
22622                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22623                   min: 0 1;
22624                   align: 0.0 0.5;
22625                   text_class: "slp_roman";
22626                }
22627             }
22628             GENLIST_DESCRIPTION_FLIP_ENABLED
22629          }
22630          part { name: "elm.flip.content.5";
22631             clip_to: "disclip";
22632             type: SWALLOW;
22633             description { state: "default" 0.0;
22634                visible: 0;
22635                fixed: 1 1;
22636                rel1.to: "elm.text.5";
22637                rel2.to: "elm.text.5";
22638             }
22639             description { state: "flip_enabled" 0.0;
22640                inherit: "default" 0.0;
22641                visible: 1;
22642             }
22643          }
22644          GENLIST_PART_DISCLIP
22645       }
22646       programs {
22647          // signal: elm,state,%s,active
22648          //   a "check" item named %s went active
22649          // signal: elm,state,%s,passive
22650          //   a "check" item named %s went passive
22651          // default is passive
22652          /*program { name: "go_active";
22653             signal: "elm,state,selected";
22654             source: "elm";
22655             action: STATE_SET "selected" 0.0;
22656             target: "elm.text";
22657          }
22658          program { name: "go_passive";
22659             signal: "elm,state,unselected";
22660             source: "elm";
22661             action: STATE_SET "default" 0.0;
22662             target: "elm.text";
22663             transition: LINEAR 0.1;
22664          }*/
22665          program { name: "go_disabled";
22666             signal: "elm,state,disabled";
22667             source: "elm";
22668             action: STATE_SET "disabled" 0.0;
22669             target: "disclip";
22670          }
22671          program { name: "go_enabled";
22672             signal: "elm,state,enabled";
22673             source: "elm";
22674             action: STATE_SET "default" 0.0;
22675             target: "disclip";
22676          }
22677          program { name: "flip_enabled";
22678             signal: "elm,state,flip,enabled";
22679             source: "elm";
22680             action: STATE_SET "flip_enabled" 0.0;
22681             target: "elm.title";
22682             target: "elm.text.1";
22683             target: "elm.text.2";
22684             target: "elm.text.3";
22685             target: "elm.text.4";
22686             target: "elm.text.5";
22687             target: "elm.flip.content.title";
22688             target: "elm.flip.content.1";
22689             target: "elm.flip.content.2";
22690             target: "elm.flip.content.3";
22691             target: "elm.flip.content.4";
22692             target: "elm.flip.content.5";
22693          }
22694          program { name: "flip_disabled";
22695             signal: "elm,state,flip,disabled";
22696             source: "elm";
22697             action: STATE_SET "default" 0.0;
22698             target: "elm.title";
22699             target: "elm.text.1";
22700             target: "elm.text.2";
22701             target: "elm.text.3";
22702             target: "elm.text.4";
22703             target: "elm.text.5";
22704             target: "elm.flip.content.title";
22705             target: "elm.flip.content.1";
22706             target: "elm.flip.content.2";
22707             target: "elm.flip.content.3";
22708             target: "elm.flip.content.4";
22709             target: "elm.flip.content.5";
22710          }
22711       }
22712    }
22713
22714 /* extended item of bg/2text.1icon.3 */
22715    group { name: "elm/genlist/item/dialogue/bg/1text/default";
22716       alias: "elm/genlist/item_odd/dialogue/bg/1text/default";
22717       alias: "elm/genlist/item_compress/dialogue/bg/1text/default";
22718       alias: "elm/genlist/item_compress_odd/dialogue/bg/1text/default";
22719       alias: "elm/layout/dialogue/bg/1text";
22720       data.item: "stacking" "above";
22721       data.item: "selectraise" "on";
22722       data.item: "texts" "elm.text";
22723       data.item: "flips" "elm.flip.content";
22724       parts {
22725          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_1LINE )
22726          GENLIST_PART_PADDING_TOP( 0 )
22727          GENLIST_PART_PADDING_BOTTOM( 0 )
22728          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
22729          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22730          part { name: "elm.icon.bg";
22731             type: RECT;
22732             scale: 1;
22733             description { state: "default" 0.0;
22734                min: GENLIST_SIZE_160_INC 0;
22735                fixed: 1 0;
22736                align: 0.0 0.5;
22737                rel1 {
22738                   relative: 1.0 0.5;
22739                   to_x: "elm.padding.left";
22740                }
22741                rel2 {
22742                   relative: 1.0 0.5;
22743                   to_x: "elm.padding.left";
22744                }
22745                color: 0 0 0 0;
22746             }
22747          }
22748          part { name: "elm.padding.icon.right";
22749             type: RECT;
22750             mouse_events: 0;
22751             scale: 1;
22752             description { state: "default" 0.0;
22753                min: GENLIST_SIZE_16_INC 0;
22754                fixed: 1 0;
22755                rel1 {
22756                    relative: 1.0 0.0;
22757                    to_x: "elm.icon.bg";
22758                }
22759                rel2.to_x: "elm.icon.bg";
22760                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22761                align: 0.0 0.5;
22762             }
22763          }
22764          part { name: "elm.padding.text.left";
22765             type: RECT;
22766             mouse_events: 0;
22767             scale: 1;
22768             description { state: "default" 0.0;
22769                min: GENLIST_SIZE_16_INC 0;
22770                fixed: 1 0;
22771                rel1 {
22772                    relative: 1.0 1.0;
22773                    to_x: "elm.padding.icon.right";
22774                    to_y: "elm.padding.top";
22775                }
22776                rel2.to_x: "elm.padding.icon.right";
22777                visible: 0;
22778                align: 0.0 0.5;
22779             }
22780          }
22781          part { name: "vertical_line";
22782             type: RECT;
22783             mouse_events: 0;
22784             description { state: "default" 0.0;
22785                visible: 0;
22786                rel1 {
22787                   relative: 1.0 0.0;
22788                   to_x: "elm.padding.icon.right";
22789                }
22790                rel2.to_x: "elm.padding.icon.right";
22791                align: 0.0 0.5;
22792             }
22793          }
22794          part { name: "elm.text.bg";
22795             clip_to: "disclip";
22796             type: RECT;
22797             mouse_events: 0;
22798             scale: 1;
22799             description { state: "default" 0.0;
22800                rel1 {
22801                   relative: 1.0 0.0;
22802                   to_x: "elm.padding.icon.right";
22803                }
22804                rel2 {
22805                   relative: 1.0 1.0;
22806                   to_x: "elm.padding.right";
22807                }
22808                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
22809             }
22810          }
22811          part { name: "elm.text";
22812             clip_to: "disclip";
22813             type: TEXT;
22814             mouse_events: 0;
22815             scale: 1;
22816             description { state: "default" 0.0;
22817                rel1 {
22818                   relative: 1.0 0.0;
22819                   to_x: "elm.padding.text.left";
22820                   to_y: "elm.text.bg";
22821                }
22822                rel2 {
22823                   relative: 0.0 1.0;
22824                   to_x: "elm.padding.right";
22825                   to_y: "elm.text.bg";
22826                }
22827                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22828                text {
22829                   font: "SLP:style=Roman";
22830                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22831                   min: 0 1;
22832                   align: 0.0 0.5;
22833                   text_class: "list_item";
22834                }
22835             }
22836             GENLIST_DESCRIPTION_FLIP_ENABLED
22837          }
22838          part { name: "elm.flip.content";
22839             clip_to: "disclip";
22840             type: SWALLOW;
22841             mouse_events: 1;
22842             scale: 1;
22843             description { state: "default" 0.0;
22844                fixed: 1 1;
22845                rel1 {
22846                   relative: 1.0 0.0;
22847                   to_x: "elm.padding.text.left";
22848                   to_y: "elm.text.bg";
22849                }
22850                rel2 {
22851                   relative: 0.0 1.0;
22852                   to_x: "elm.padding.right";
22853                   to_y: "elm.text.bg";
22854                }
22855                visible: 0;
22856             }
22857             description { state: "flip_enabled" 0.0;
22858                inherit: "default" 0.0;
22859                visible: 1;
22860             }
22861          }
22862          GENLIST_PART_DISCLIP
22863       }
22864       programs {
22865          // signal: elm,state,%s,active
22866          //   a "check" item named %s went active
22867          // signal: elm,state,%s,passive
22868          //   a "check" item named %s went passive
22869          // default is passive
22870          /*program { name: "go_active";
22871             signal: "elm,state,selected";
22872             source: "elm";
22873             action: STATE_SET "selected" 0.0;
22874             target: "elm.text";
22875          }
22876          program { name: "go_passive";
22877             signal: "elm,state,unselected";
22878             source: "elm";
22879             action: STATE_SET "default" 0.0;
22880             target: "elm.text";
22881             transition: LINEAR 0.1;
22882          }*/
22883          program { name: "go_disabled";
22884             signal: "elm,state,disabled";
22885             source: "elm";
22886             action: STATE_SET "disabled" 0.0;
22887             target: "disclip";
22888          }
22889          program { name: "go_enabled";
22890             signal: "elm,state,enabled";
22891             source: "elm";
22892             action: STATE_SET "default" 0.0;
22893             target: "disclip";
22894          }
22895          program { name: "flip_enabled";
22896             signal: "elm,state,flip,enabled";
22897             source: "elm";
22898             action: STATE_SET "flip_enabled" 0.0;
22899             target: "elm.text";
22900             target: "elm.flip.content";
22901          }
22902          program { name: "flip_disabled";
22903             signal: "elm,state,flip,disabled";
22904             source: "elm";
22905             action: STATE_SET "default" 0.0;
22906             target: "elm.text";
22907             target: "elm.flip.content";
22908          }
22909       }
22910    }
22911 // 2.2.2.38
22912    group { name: "elm/genlist/item/4text.1icon.1/default";
22913       alias: "elm/genlist/item_odd/4text.1icon.1/default";
22914       alias: "elm/genlist/item_compress/4text.1icon.1/default";
22915       alias: "elm/genlist/item_compress_odd/4text.1icon.1/default";
22916       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
22917       data.item: "contents" "elm.icon.1";
22918       data.item: "stacking" "above";
22919       data.item: "selectraise" "on";
22920       data.item: "flips" "elm.flip.content";
22921       images {
22922          image: "00_winset_list_bubble_bg.png" COMP;
22923       }
22924       parts {
22925          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
22926          GENLIST_PART_BG_IMAGE
22927          GENLIST_PART_BOTTOM_LINE
22928          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_SIZE_TOP )
22929          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_SIZE_BOTTOM )
22930          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
22931          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22932
22933          GENLIST_PADDING("elm.icon.right", GENLIST_DESCRIPTION_RTB("elm.text.4", "elm.padding.top", "elm.padding.bottom", fixed: 1 0; min:16 0; visible: 0;))
22934          GENLIST_PADDING("elm.text.1.right", GENLIST_DESCRIPTION_RTB("elm.icon.1", "elm.padding.top", "elm.padding.bottom", fixed: 1 0; min:16 0; visible: 0;))
22935          GENLIST_PADDING("elm.text.3.right", GENLIST_DESCRIPTION_RTB("elm.text.2", "elm.padding.top", "elm.padding.bottom", fixed: 1 0; min:16 0; visible: 0;))
22936          part { name: "elm.bubble";
22937             type: IMAGE;
22938             description{ state: "default" 0.0;
22939                fixed: 1 1;
22940                min: GENLIST_ICON_MEDIUM_SIZE 38;
22941                max: GENLIST_ICON_MEDIUM_SIZE 38;
22942                rel1 {
22943                   relative: 0 0;
22944                   to_x: "elm.text.4";
22945                   to_y: "elm.text.4";
22946                }
22947                rel2 {
22948                   relative: 1 1;
22949                   to_x: "elm.text.4";
22950                   to_y: "elm.text.4";
22951                }
22952                image {
22953                   normal: "00_winset_list_bubble_bg.png";
22954                   border:  6 6 0 0;
22955                }
22956             }
22957          }
22958          part { name: "elm.text.4";
22959             clip_to: "disclip";
22960             type: TEXT;
22961             scale: 1;
22962             GENLIST_DESCRIPTION_RT("elm.padding.right", "elm.padding.top",
22963                color: GENLIST_LIST_BUBBLE_TEXT_COLOR;
22964                fixed: 1 1;
22965                min: GENLIST_ICON_MEDIUM_SIZE 60;
22966                max: GENLIST_ICON_MEDIUM_SIZE 60;
22967                text {
22968                   font: "SLP:style=Medium";
22969                   size: GENLIST_FONT_32_INC;
22970                   min: 0 0;
22971                   align: 0.5 0.5;
22972                   text_class: "slp_medium";
22973                }
22974             )
22975             GENLIST_DESCRIPTION_FLIP_ENABLED
22976          }
22977          part { name: "elm.icon.1";
22978             clip_to: "disclip";
22979             type: SWALLOW;
22980             scale: 1;
22981             GENLIST_DESCRIPTION_RT("elm.icon.right", "elm.padding.top",
22982                color: 0 255 255 255;
22983                fixed: 1 1;
22984                min: GENLIST_ICON_MEDIUM_SIZE GENLIST_ICON_MEDIUM_SIZE;
22985             )
22986          }
22987          part { name: "elm.text.2";
22988             clip_to: "disclip";
22989             type: TEXT;
22990             scale: 1;
22991             GENLIST_DESCRIPTION_RB("elm.padding.right", "elm.padding.bottom",
22992                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
22993                fixed: 1 1;
22994                min: 0 48;
22995                max: 300 48;
22996                text {
22997                   font: "SLP:style=Medium";
22998                   size: GENLIST_FONT_32_INC;
22999                   min: 1 0;
23000                   align: 0.5 0.5;
23001                   text_class: "slp_medium";
23002               }
23003             )
23004             description { state: "selected" 0.0;
23005                inherit: "default" 0.0;
23006                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23007             }
23008             GENLIST_DESCRIPTION_FLIP_ENABLED
23009          }
23010          part { name: "elm.text.1";
23011             clip_to: "disclip";
23012             type: TEXT;
23013             scale: 1;
23014             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.1.right", "elm.padding.top", "elm.text.2",
23015                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23016                min: 0 60;
23017                text {
23018                   font: "SLP:style=Roman";
23019                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23020                   align: 0.0 0.5;
23021                   min: 0 1;
23022                   text_class: "list_item";
23023                }
23024             )
23025             description { state: "read" 0.0;
23026                inherit: "default" 0.0;
23027                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23028             }
23029             description { state: "selected" 0.0;
23030                inherit: "default" 0.0;
23031                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23032             }
23033             GENLIST_DESCRIPTION_FLIP_ENABLED
23034          }
23035          part { name: "elm.text.3";
23036             clip_to: "disclip";
23037             type: TEXT;
23038             scale: 1;
23039             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.3.right", "elm.text.1", "elm.padding.bottom",
23040                color: GENLIST_NAME_TEXT_COLOR;
23041                fixed: 1 1;
23042                align: 0.0 0.5;
23043                min: 0 48;
23044                text {
23045                   font: "SLP:style=Medium";
23046                   size: GENLIST_FONT_32_INC;
23047                   align: 0.0 0.5;
23048                   text_class: "slp_medium";
23049                }
23050             )
23051             GENLIST_DESCRIPTION_FLIP_ENABLED
23052          }
23053          GENLIST_PART_FLIP
23054          GENLIST_PART_DISCLIP
23055       }
23056       programs {
23057          // signal: elm,state,%s,active
23058          //   a "check" item named %s went active
23059          // signal: elm,state,%s,passive
23060          //   a "check" item named %s went passive
23061          // default is passive
23062          program { name: "go_active";
23063             signal: "elm,state,selected";
23064             source: "elm";
23065             action: STATE_SET "selected" 0.0;
23066             target: "bg_image";
23067             target: "elm.text.1";
23068             target: "elm.text.2";
23069             target: "elm.text.3";
23070          }
23071          program { name: "go_passive";
23072             signal: "elm,state,unselected";
23073             source: "elm";
23074             action: STATE_SET "default" 0.0;
23075             target: "bg_image";
23076             target: "elm.text.1";
23077             target: "elm.text.2";
23078             target: "elm.text.3";
23079             transition: LINEAR 0.1;
23080          }
23081          program { name: "go_read";
23082             signal: "elm,state,read";
23083             source: "elm";
23084             action: STATE_SET "read" 0.0;
23085             target: "elm.text.1";
23086          }
23087          program { name: "go_unread";
23088             signal: "elm,state,unread";
23089             source: "elm";
23090             action: STATE_SET "default" 0.0;
23091             target: "elm.text.1";
23092          }
23093       }
23094    }
23095 // 2.2.2.38 textblock
23096    group { name: "elm/genlist/item/4text.1icon.1.tb/default";
23097       alias: "elm/genlist/item_odd/4text.1icon.1.tb/default";
23098       alias: "elm/genlist/item_compress/4text.1icon.1.tb/default";
23099       alias: "elm/genlist/item_compress_odd/4text.1icon.1.tb/default";
23100       inherit: "elm/genlist/item/4text.1icon.1/default";
23101       parts {
23102          part { name: "elm.text.4";
23103             clip_to: "disclip";
23104             type: TEXTBLOCK;
23105             scale: 1;
23106             GENLIST_DESCRIPTION_RT("elm.padding.right", "elm.padding.top",
23107                fixed: 1 1;
23108                min: GENLIST_ICON_MEDIUM_SIZE 60;
23109                max: GENLIST_ICON_MEDIUM_SIZE 60;
23110                text {
23111                   style: "genlist_style_list_bubble_text";
23112                   min: 1 1;
23113                   align: 0.5 0.5;
23114                }
23115             )
23116             GENLIST_DESCRIPTION_FLIP_ENABLED
23117          }
23118          part { name: "elm.text.2";
23119             clip_to: "disclip";
23120             type: TEXTBLOCK;
23121             scale: 1;
23122             GENLIST_DESCRIPTION_RB("elm.padding.right", "elm.padding.bottom",
23123                fixed: 1 1;
23124                min: 0 48;
23125                max: 300 48;
23126                text {
23127                   style: "genlist_style_list_sub_text_default";
23128                   min: 1 0;
23129                   align: 0.5 0.5;
23130               }
23131             )
23132             description { state: "selected" 0.0;
23133                inherit: "default" 0.0;
23134                            // FIXME: color is not chaned by textblock
23135                            color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23136                text.style: "genlist_style_list_sub_text_focus";
23137             }
23138             GENLIST_DESCRIPTION_FLIP_ENABLED
23139          }
23140          part { name: "elm.text.1";
23141             clip_to: "disclip";
23142             type: TEXTBLOCK;
23143             scale: 1;
23144             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.1.right", "elm.padding.top", "elm.text.2",
23145                fixed: 0 1;
23146                min: 0 60;
23147                max: -1 60;
23148                text {
23149                   style: "genlist_style_list_main_text_unread";
23150                   align: 0.0 0.5;
23151                }
23152             )
23153             description { state: "read" 0.0;
23154                inherit: "default" 0.0;
23155                            // FIXME: color is not chaned by textblock
23156                            color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23157                text.style: "genlist_style_list_main_text_unread";
23158             }
23159             description { state: "selected" 0.0;
23160                inherit: "default" 0.0;
23161                            // FIXME: color is not chaned by textblock
23162                            color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23163                text.style: "genlist_style_list_main_text_focus";
23164             }
23165             GENLIST_DESCRIPTION_FLIP_ENABLED
23166          }
23167          part { name: "elm.text.3";
23168             clip_to: "disclip";
23169             type: TEXT;
23170             scale: 1;
23171             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.3.right", "elm.text.1", "elm.padding.bottom",
23172                fixed: 1 1;
23173                align: 0.0 0.5;
23174                min: 0 48;
23175                text {
23176                   style: "genlist_style_name_text";
23177                   align: 0.0 0.5;
23178                }
23179             )
23180             GENLIST_DESCRIPTION_FLIP_ENABLED
23181          }
23182          GENLIST_PART_FLIP
23183          GENLIST_PART_DISCLIP
23184       }
23185    }
23186
23187 // 2.2.2.39
23188    group { name: "elm/genlist/item/4text.1icon.2/default";
23189       alias: "elm/genlist/item_odd/4text.1icon.2/default";
23190       alias: "elm/genlist/item_compress/4text.1icon.2/default";
23191       alias: "elm/genlist/item_compress_odd/4text.1icon.2/default";
23192       inherit: "elm/genlist/item/4text.1icon.1/default";
23193       parts {
23194          part { name: "elm.bubble";
23195             description { state: "default" 0.0;
23196                visible: 0;
23197             }
23198          }
23199          part { name: "elm.text.4";
23200             description { state: "default" 0.0;
23201                fixed: 1 1;
23202                max: -1 60;
23203                color: GENLIST_LIST_MESSAGE_TEXT_COLOR;
23204                text {
23205                   font: GENLIST_LIST_MESSAGE_TEXT_SIZE;
23206                   min: 1 0;
23207                   align: 0.5 0.5;
23208                }
23209             }
23210          }
23211       }
23212    }
23213 // 2.2.2.39 (TEXTBLOCK)
23214    group { name: "elm/genlist/item/4text.1icon.2.tb/default";
23215       alias: "elm/genlist/item_odd/4text.1icon.2.tb/default";
23216       alias: "elm/genlist/item_compress/4text.1icon.2.tb/default";
23217       alias: "elm/genlist/item_compress_odd/4text.1icon.2.tb/default";
23218       inherit: "elm/genlist/item/4text.1icon.1.tb/default";
23219
23220       parts {
23221          part { name: "elm.bubble";
23222             description { state: "default" 0.0;
23223                visible: 0;
23224             }
23225          }
23226          part { name: "elm.text.4";
23227             description { state: "default" 0.0;
23228                fixed: 1 1;
23229                max: -1 60;
23230                text {
23231                   style: "genlist_style_list_message_text";
23232                   min: 1 0;
23233                   align: 0.5 0.5;
23234                }
23235             }
23236          }
23237       }
23238    }
23239    // 2.2.2.40
23240    group { name: "elm/genlist/item/4text.1/default";
23241       alias: "elm/genlist/item_odd/4text.1/default";
23242       alias: "elm/genlist/item_compress/4text.1/default";
23243       alias: "elm/genlist/item_compress_odd/4text.1/default";
23244       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23245       data.item: "stacking" "above";
23246       data.item: "selectraise" "on";
23247       data.item: "flips" "elm.flip.content";
23248       images {
23249          image: "00_winset_list_bubble_bg.png" COMP;
23250       }
23251       parts {
23252          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23253          GENLIST_PART_BG_IMAGE
23254          GENLIST_PART_BOTTOM_LINE
23255          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23256          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23257          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23258          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23259
23260          part { name: "elm.text.1";
23261             clip_to: "disclip";
23262             type: TEXT;
23263             scale: 1;
23264             description { state: "default" 0.0;
23265                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23266                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23267                rel1 { relative: 1.0 1.0;
23268                   to_x: "elm.padding.left";
23269                   to_y: "elm.padding.top";
23270                }
23271                rel2 { relative: 0.0 1.0;
23272                   to_x: "elm.padding.text1.right";
23273                   to_y: "elm.padding.text1.right";
23274                }
23275                text {
23276                   font: "SLP:style=Roman";
23277                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23278                   min: 0 1;
23279                   align: 0.0 0.5;
23280                   text_class: "list_item";
23281                }
23282             }
23283             description { state: "read" 0.0;
23284                inherit: "default" 0.0;
23285                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23286             }
23287             description { state: "selected" 0.0;
23288                inherit: "default" 0.0;
23289                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23290             }
23291             GENLIST_DESCRIPTION_FLIP_ENABLED
23292          }
23293          part { name: "elm.padding.text1.right";
23294             clip_to: "disclip";
23295             type: RECT;
23296             scale: 1;
23297             description { state: "default" 0.0;
23298                fixed: 1 1 ;
23299                align: 1.0 0.0;
23300                visible: 0;
23301                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23302                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23303                rel1 { relative: 0.0 1.0;
23304                   to_x: "elm.text.2";
23305                   to_y: "elm.padding.top";
23306                }
23307                rel2 { relative: 0.0 1.0;
23308                   to_x: "elm.text.2";
23309                   to_y: "elm.padding.top";
23310                }
23311             }
23312          }
23313          part { name: "elm.text.2";
23314             clip_to: "disclip";
23315             type: TEXT;
23316             scale: 1;
23317             description { state: "default" 0.0;
23318                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
23319                fixed: 0 1;
23320                align: 1.0 1.0;
23321                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23322                rel1 { relative: 0.0 1.0;
23323                   to_x: "elm.padding.right";
23324                   to_y: "elm.padding.bottom";
23325                }
23326                rel2 { relative: 0.0 1.0;
23327                  to_x: "elm.padding.right";
23328                  to_y: "elm.padding.bottom";
23329                }
23330                text {
23331                   font: "SLP:style=Medium";
23332                   size: GENLIST_FONT_32_INC;
23333                   min: 1 1;
23334                   align: 0.5 0.5;
23335                   text_class: "slp_medium";
23336               }
23337             }
23338             description { state: "selected" 0.0;
23339                inherit: "default" 0.0;
23340                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23341             }
23342             GENLIST_DESCRIPTION_FLIP_ENABLED
23343          }
23344          part { name: "elm.bubble";
23345             type: IMAGE;
23346             description{ state: "default" 0.0;
23347                fixed: 1 1;
23348                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23349                rel1 { relative: 0 0;
23350                   to_x: "elm.padding.bubble.text4.left";
23351                   to_y: "elm.padding.bubble.text4.left";
23352                }
23353                rel2 { relative: 1 1;
23354                   to_x: "elm.padding.bubble.text4.right";
23355                   to_y: "elm.padding.bubble.text4.right";
23356                }
23357                image {
23358                   normal: "00_winset_list_bubble_bg.png";
23359                   border:  6 6 0 0;
23360                }
23361             }
23362          }
23363          part { name: "elm.padding.bubble.text4.left";
23364             type: RECT;
23365             scale: 1;
23366             description { state: "default" 0.0;
23367                fixed: 1 1;
23368                align: 1 0;
23369                visible: 0;
23370                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23371                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23372                rel1 { relative: 0 1;
23373                   to_x: "elm.text.4";
23374                   to_y: "elm.padding.top";
23375                }
23376                rel2 { relative: 0 0;
23377                   to_x: "elm.text.4";
23378                   to_y: "elm.text.2";
23379                }
23380
23381             }
23382          }
23383          part { name: "elm.padding.bubble.text4.right";
23384             type: RECT;
23385             scale: 1;
23386             description { state: "default" 0.0;
23387                fixed: 1 1;
23388                align: 1 0;
23389                visible: 0;
23390                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23391                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23392                rel1 { relative: 0 1;
23393                   to_x: "elm.padding.right";
23394                   to_y: "elm.padding.top";
23395                }
23396                rel2 { relative: 0 0;
23397                   to_x: "elm.padding.right";
23398                   to_y: "elm.text.2";
23399                }
23400             }
23401          }
23402          part { name: "elm.text.4";
23403             clip_to: "disclip";
23404             type: TEXT;
23405             scale: 1;
23406             description { state: "default" 0.0;
23407                color: GENLIST_LIST_BUBBLE_TEXT_COLOR;
23408                fixed: 1 1;
23409                align: 1.0 0.0;
23410                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
23411                rel1 { relative: 0 1;
23412                   to_x: "elm.padding.bubble.text4.right";
23413                   to_y: "elm.padding.top";
23414                }
23415                rel2 { relative: 0 0;
23416                   to_x: "elm.padding.bubble.text4.right";
23417                   to_y: "elm.text.2";
23418                }
23419                text {
23420                   font: "SLP:style=Medium";
23421                   size: GENLIST_FONT_32_INC;
23422                   min: 1 1;
23423                   align: 0.5 0.5;
23424                   text_class: "slp_medium";
23425                }
23426             }
23427             GENLIST_DESCRIPTION_FLIP_ENABLED
23428          }
23429          part { name: "elm.padding.text3.right";
23430             clip_to: "disclip";
23431             type: RECT;
23432             scale: 1;
23433             description { state: "default" 0.0;
23434                fixed: 1 1;
23435                align: 1.0 0.0;
23436                visible: 0;
23437                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23438                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23439                rel1 { relative: 0 0;
23440                   to_x: "elm.padding.bubble.text4.left";
23441                   to_y: "elm.padding.bubble.text4.left";
23442                }
23443                rel2 { relative: 0 0;
23444                   to_x: "elm.padding.bubble.text4.left";
23445                   to_y: "elm.padding.bottom";
23446                }
23447             }
23448          }
23449          part { name: "elm.text.3";
23450             clip_to: "disclip";
23451             type: TEXT;
23452             scale: 1;
23453             description { state: "default" 0.0;
23454                color: GENLIST_NAME_TEXT_COLOR;
23455                fixed: 0 1;
23456                align: 0.0 0.0;
23457                min: 0 GENLIST_SIZE_48_INC;
23458                rel1 { relative: 1 1;
23459                   to_x: "elm.padding.left";
23460                   to_y: "elm.text.1";
23461                }
23462                rel2 { relative: 0 1;
23463                   to_x: "elm.padding.text3.right";
23464                   to_y: "elm.padding.text3.right";
23465                }
23466                text {
23467                   font: "SLP:style=Medium";
23468                   size: GENLIST_FONT_32_INC;
23469                   min: 0 1;
23470                   align: 0.0 0.5;
23471                   text_class: "slp_medium";
23472                }
23473             }
23474             description { state: "selected" 0.0;
23475                inherit: "default" 0.0;
23476                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23477             }
23478             GENLIST_DESCRIPTION_FLIP_ENABLED
23479          }
23480          GENLIST_PART_FLIP
23481          GENLIST_PART_DISCLIP
23482       }
23483       programs {
23484          // signal: elm,state,%s,active
23485          //   a "check" item named %s went active
23486          // signal: elm,state,%s,passive
23487          //   a "check" item named %s went passive
23488          // default is passive
23489          program { name: "go_active";
23490             signal: "elm,state,selected";
23491             source: "elm";
23492             action: STATE_SET "selected" 0.0;
23493             target: "bg_image";
23494             target: "elm.text.1";
23495             target: "elm.text.2";
23496          }
23497          program { name: "go_passive";
23498             signal: "elm,state,unselected";
23499             source: "elm";
23500             action: STATE_SET "default" 0.0;
23501             target: "bg_image";
23502             target: "elm.text.1";
23503             target: "elm.text.2";
23504             transition: LINEAR 0.1;
23505          }
23506          program { name: "go_read";
23507             signal: "elm,state,read";
23508             source: "elm";
23509             action: STATE_SET "read" 0.0;
23510             target: "elm.text.1";
23511          }
23512          program { name: "go_unread";
23513             signal: "elm,state,unread";
23514             source: "elm";
23515             action: STATE_SET "default" 0.0;
23516             target: "elm.text.1";
23517          }
23518       }
23519    }
23520    // 2.2.2.41
23521    group { name: "elm/genlist/item/4text.2/default";
23522       alias: "elm/genlist/item_odd/4text.2/default";
23523       alias: "elm/genlist/item_compress/4text.2/default";
23524       alias: "elm/genlist/item_compress_odd/4text.2/default";
23525       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23526       data.item: "stacking" "above";
23527       data.item: "selectraise" "on";
23528       data.item: "flips" "elm.flip.content";
23529       parts {
23530          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23531          GENLIST_PART_BG_IMAGE
23532          GENLIST_PART_BOTTOM_LINE
23533          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23534          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23535          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23536          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23537
23538          part { name: "elm.text.1";
23539             clip_to: "disclip";
23540             type: TEXT;
23541             scale: 1;
23542             description { state: "default" 0.0;
23543                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23544                fixed: 0 1;
23545                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23546                rel1 { relative: 1.0 1.0;
23547                   to_x: "elm.padding.left";
23548                   to_y: "elm.padding.top";
23549                }
23550                rel2 { relative: 0.0 1.0;
23551                   to_x: "elm.padding.text1.right";
23552                   to_y: "elm.padding.text1.right";
23553                }
23554                text {
23555                   font: "SLP:style=Roman";
23556                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23557                   min: 0 1;
23558                   align: 0.0 0.5;
23559                   text_class: "list_item";
23560                }
23561             }
23562             description { state: "read" 0.0;
23563                inherit: "default" 0.0;
23564                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23565             }
23566             description { state: "selected" 0.0;
23567                inherit: "default" 0.0;
23568                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23569             }
23570             GENLIST_DESCRIPTION_FLIP_ENABLED
23571          }
23572          part { name: "elm.padding.text1.right";
23573             clip_to: "disclip";
23574             type: RECT;
23575             scale: 1;
23576             description { state: "default" 0.0;
23577                fixed: 1 1 ;
23578                align: 1.0 0.0;
23579                visible: 0;
23580                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23581                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23582                rel1 { relative: 0.0 1.0;
23583                   to_x: "elm.text.2";
23584                   to_y: "elm.padding.top";
23585                }
23586                rel2 { relative: 0.0 1.0;
23587                   to_x: "elm.text.2";
23588                   to_y: "elm.padding.top";
23589                }
23590             }
23591          }
23592          part { name: "elm.text.2";
23593             clip_to: "disclip";
23594             type: TEXT;
23595             scale: 1;
23596             description { state: "default" 0.0;
23597                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
23598                fixed: 0 1;
23599                align: 1.0 1.0;
23600                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23601                rel1 { relative: 0.0 1.0;
23602                   to_x: "elm.padding.right";
23603                   to_y: "elm.padding.bottom";
23604                }
23605                rel2 { relative: 0.0 1.0;
23606                  to_x: "elm.padding.right";
23607                  to_y: "elm.padding.bottom";
23608                }
23609                text {
23610                   font: "SLP:style=Medium";
23611                   size: GENLIST_FONT_32_INC;
23612                   min: 1 1;
23613                   align: 0.5 0.5;
23614                   text_class: "slp_medium";
23615               }
23616             }
23617             description { state: "selected" 0.0;
23618                inherit: "default" 0.0;
23619                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23620             }
23621             GENLIST_DESCRIPTION_FLIP_ENABLED
23622          }
23623          part { name: "elm.text.4";
23624             clip_to: "disclip";
23625             type: TEXT;
23626             scale: 1;
23627             description { state: "default" 0.0;
23628                color: GENLIST_LIST_MESSAGE_TEXT_COLOR;
23629                fixed: 0 1;
23630                align: 1.0 0.0;
23631                min: 0 GENLIST_SIZE_48_INC;
23632                rel1 { relative: 0 1;
23633                   to_x: "elm.padding.right";
23634                   to_y: "elm.padding.top";
23635                }
23636                rel2 { relative: 0 0;
23637                   to_x: "elm.padding.right";
23638                   to_y: "elm.text.2";
23639                }
23640                text {
23641                   font: "SLP:style=Medium";
23642                   size: GENLIST_FONT_32_INC;
23643                   min: 1 1;
23644                   align: 0.5 0.5;
23645                   text_class: "slp_medium";
23646                }
23647             }
23648             GENLIST_DESCRIPTION_FLIP_ENABLED
23649          }
23650          part { name: "elm.padding.text3.right";
23651             clip_to: "disclip";
23652             type: RECT;
23653             scale: 1;
23654             description { state: "default" 0.0;
23655                fixed: 1 1;
23656                align: 1.0 0.0;
23657                visible: 0;
23658                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23659                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23660                rel1 { relative: 0 0;
23661                   to_x: "elm.text.4";
23662                   to_y: "elm.text.4";
23663                }
23664                rel2 { relative: 0 0;
23665                   to_x: "elm.text.4";
23666                   to_y: "elm.padding.bottom";
23667                }
23668             }
23669          }
23670          part { name: "elm.text.3";
23671             clip_to: "disclip";
23672             type: TEXT;
23673             scale: 1;
23674             description { state: "default" 0.0;
23675                color: GENLIST_NAME_TEXT_COLOR;
23676                fixed: 0 1;
23677                align: 0.0 0.0;
23678                min: 0 GENLIST_SIZE_48_INC;
23679                rel1 { relative: 1 1;
23680                   to_x: "elm.padding.left";
23681                   to_y: "elm.text.1";
23682                }
23683                rel2 { relative: 0 1;
23684                   to_x: "elm.padding.text3.right";
23685                   to_y: "elm.padding.text3.right";
23686                }
23687                text {
23688                   font: "SLP:style=Medium";
23689                   size: GENLIST_FONT_32_INC;
23690                   min: 0 1;
23691                   align: 0.0 0.5;
23692                   text_class: "slp_medium";
23693                }
23694             }
23695             description { state: "selected" 0.0;
23696                inherit: "default" 0.0;
23697                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23698             }
23699             GENLIST_DESCRIPTION_FLIP_ENABLED
23700          }
23701          GENLIST_PART_FLIP
23702          GENLIST_PART_DISCLIP
23703       }
23704       programs {
23705          // signal: elm,state,%s,active
23706          //   a "check" item named %s went active
23707          // signal: elm,state,%s,passive
23708          //   a "check" item named %s went passive
23709          // default is passive
23710          program { name: "go_active";
23711             signal: "elm,state,selected";
23712             source: "elm";
23713             action: STATE_SET "selected" 0.0;
23714             target: "bg_image";
23715             target: "elm.text.1";
23716             target: "elm.text.2";
23717          }
23718          program { name: "go_passive";
23719             signal: "elm,state,unselected";
23720             source: "elm";
23721             action: STATE_SET "default" 0.0;
23722             target: "bg_image";
23723             target: "elm.text.1";
23724             target: "elm.text.2";
23725             transition: LINEAR 0.1;
23726          }
23727          program { name: "go_read";
23728             signal: "elm,state,read";
23729             source: "elm";
23730             action: STATE_SET "read" 0.0;
23731             target: "elm.text.1";
23732          }
23733          program { name: "go_unread";
23734             signal: "elm,state,unread";
23735             source: "elm";
23736             action: STATE_SET "default" 0.0;
23737             target: "elm.text.1";
23738          }
23739       }
23740    }
23741    // 2.2.2.42
23742    group { name: "elm/genlist/item/3text.1icon.3/default";
23743       alias: "elm/genlist/item_odd/3text.1icon.3/default";
23744       alias: "elm/genlist/item_compress/3text.1icon.3/default";
23745       alias: "elm/genlist/item_compress_odd/3text.1icon.3/default";
23746       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
23747       data.item: "contents" "elm.icon.1";
23748       data.item: "stacking" "above";
23749       data.item: "selectraise" "on";
23750       data.item: "flips" "elm.flip.content";
23751       parts {
23752          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23753          GENLIST_PART_BG_IMAGE
23754          GENLIST_PART_BOTTOM_LINE
23755          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23756          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23757          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23758          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23759
23760          part { name: "elm.text.1";
23761             clip_to: "disclip";
23762             type: TEXT;
23763             scale: 1;
23764             description { state: "default" 0.0;
23765                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23766                fixed: 0 1;
23767                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23768                rel1 { relative: 1.0 1.0;
23769                   to_x: "elm.padding.left";
23770                   to_y: "elm.padding.top";
23771                }
23772                rel2 { relative: 0.0 1.0;
23773                   to_x: "elm.padding.text1.right";
23774                   to_y: "elm.padding.text1.right";
23775                }
23776                text {
23777                   font: "SLP:style=Roman";
23778                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23779                   min: 0 1;
23780                   align: 0.0 0.5;
23781                   text_class: "list_item";
23782                }
23783             }
23784             description { state: "read" 0.0;
23785                inherit: "default" 0.0;
23786                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23787             }
23788             description { state: "selected" 0.0;
23789                inherit: "default" 0.0;
23790                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23791             }
23792             GENLIST_DESCRIPTION_FLIP_ENABLED
23793          }
23794          part { name: "elm.padding.text1.right";
23795             clip_to: "disclip";
23796             type: RECT;
23797             scale: 1;
23798             description { state: "default" 0.0;
23799                fixed: 1 1 ;
23800                align: 1.0 0.0;
23801                visible: 0;
23802                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23803                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23804                rel1 { relative: 0.0 1.0;
23805                   to_x: "elm.icon.1";
23806                   to_y: "elm.padding.top";
23807                }
23808                rel2 { relative: 0.0 1.0;
23809                   to_x: "elm.icon.1";
23810                   to_y: "elm.padding.top";
23811                }
23812             }
23813          }
23814          part { name: "elm.text.2";
23815             clip_to: "disclip";
23816             type: TEXT;
23817             scale: 1;
23818             description { state: "default" 0.0;
23819                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
23820                fixed: 0 1;
23821                align: 1.0 1.0;
23822                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23823                rel1 { relative: 0.0 1.0;
23824                   to_x: "elm.padding.right";
23825                   to_y: "elm.padding.bottom";
23826                }
23827                rel2 { relative: 0.0 1.0;
23828                  to_x: "elm.padding.right";
23829                  to_y: "elm.padding.bottom";
23830                }
23831                text {
23832                   font: "SLP:style=Medium";
23833                   size: GENLIST_FONT_32_INC;
23834                   min: 1 1;
23835                   align: 0.5 0.5;
23836                   text_class: "slp_medium";
23837               }
23838             }
23839             description { state: "selected" 0.0;
23840                inherit: "default" 0.0;
23841                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23842             }
23843
23844             GENLIST_DESCRIPTION_FLIP_ENABLED
23845          }
23846          part { name: "elm.padding.icon1.right";
23847             clip_to: "disclip";
23848             type: RECT;
23849             scale: 1;
23850             description { state: "default" 0.0;
23851                fixed: 1 1;
23852                align: 1.0 0.0;
23853                visible: 0;
23854                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23855                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23856                rel1 { relative: 0 1;
23857                   to_x: "elm.padding.right";
23858                   to_y: "elm.padding.top";
23859                }
23860                rel2 { relative: 0 0;
23861                   to_x: "elm.padding.right";
23862                   to_y: "elm.text.2";
23863                }
23864             }
23865          }
23866          part { name: "elm.icon.1";
23867             clip_to: "disclip";
23868             type: SWALLOW;
23869             scale: 1;
23870             description { state: "default" 0.0;
23871                color: 0 255 255 255;
23872                fixed: 1 1;
23873                align: 1.0 0.0;
23874                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23875                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23876                rel1 { relative: 0 0;
23877                   to_x: "elm.padding.icon1.right";
23878                   to_y: "elm.padding.icon1.right";
23879                }
23880                rel2 { relative: 0 1;
23881                   to_x: "elm.padding.icon1.right";
23882                   to_y: "elm.padding.icon1.right";
23883                }
23884             }
23885          }
23886          part { name: "elm.padding.text3.right";
23887             clip_to: "disclip";
23888             type: RECT;
23889             scale: 1;
23890             description { state: "default" 0.0;
23891                fixed: 1 1;
23892                align: 1.0 0.0;
23893                visible: 0;
23894                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23895                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23896                rel1 { relative: 0 0;
23897                   to_x: "elm.text.2";
23898                   to_y: "elm.padding.top";
23899                }
23900                rel2 { relative: 0 0;
23901                   to_x: "elm.text.2";
23902                   to_y: "elm.icon.1";
23903                }
23904             }
23905          }
23906          part { name: "elm.text.3";
23907             clip_to: "disclip";
23908             type: TEXT;
23909             scale: 1;
23910             description { state: "default" 0.0;
23911                color: GENLIST_NAME_TEXT_COLOR;
23912                fixed: 0 1;
23913                align: 0.0 0.0;
23914                min: 0 GENLIST_SIZE_48_INC;
23915                rel1 { relative: 1 1;
23916                   to_x: "elm.padding.left";
23917                   to_y: "elm.text.1";
23918                }
23919                rel2 { relative: 0 1;
23920                   to_x: "elm.padding.text3.right";
23921                   to_y: "elm.padding.text3.right";
23922                }
23923                text {
23924                   font: "SLP:style=Medium";
23925                   size: GENLIST_FONT_32_INC;
23926                   min: 0 1;
23927                   align: 0.0 0.5;
23928                   text_class: "slp_medium";
23929                }
23930             }
23931             description { state: "selected" 0.0;
23932                inherit: "default" 0.0;
23933                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23934             }
23935             GENLIST_DESCRIPTION_FLIP_ENABLED
23936          }
23937          GENLIST_PART_FLIP
23938          GENLIST_PART_DISCLIP
23939       }
23940       programs {
23941          // signal: elm,state,%s,active
23942          //   a "check" item named %s went active
23943          // signal: elm,state,%s,passive
23944          //   a "check" item named %s went passive
23945          // default is passive
23946          program { name: "go_active";
23947             signal: "elm,state,selected";
23948             source: "elm";
23949             action: STATE_SET "selected" 0.0;
23950             target: "bg_image";
23951             target: "elm.text.1";
23952             target: "elm.text.2";
23953          }
23954          program { name: "go_passive";
23955             signal: "elm,state,unselected";
23956             source: "elm";
23957             action: STATE_SET "default" 0.0;
23958             target: "bg_image";
23959             target: "elm.text.1";
23960             target: "elm.text.2";
23961             transition: LINEAR 0.1;
23962          }
23963          program { name: "go_read";
23964             signal: "elm,state,read";
23965             source: "elm";
23966             action: STATE_SET "read" 0.0;
23967             target: "elm.text.1";
23968          }
23969          program { name: "go_unread";
23970             signal: "elm,state,unread";
23971             source: "elm";
23972             action: STATE_SET "default" 0.0;
23973             target: "elm.text.1";
23974          }
23975       }
23976    }
23977    // 2.2.2.44
23978    group { name: "elm/genlist/item/4text.1icon.3/default";
23979       alias: "elm/genlist/item_odd/4text.1icon.3/default";
23980       alias: "elm/genlist/item_compress/4text.1icon.3/default";
23981       alias: "elm/genlist/item_compress_odd/4text.1icon.3/default";
23982       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23983       data.item: "stacking" "above";
23984       data.item: "selectraise" "on";
23985       data.item: "contents" "elm.icon.1";
23986       data.item: "flips" "elm.flip.content";
23987       images {
23988          image: "00_winset_list_bubble_bg.png" COMP;
23989       }
23990       parts {
23991          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23992          GENLIST_PART_BG_IMAGE
23993          GENLIST_PART_BOTTOM_LINE
23994          GENLIST_PART_PADDING_TOP( 10 )
23995          GENLIST_PART_PADDING_BOTTOM( 10 )
23996          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23997          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23998          GENLIST_PART_COLORBAR
23999          part { name: "elm.icon.1";
24000             clip_to: "disclip";
24001             type: SWALLOW;
24002             scale: 1;
24003             GENLIST_DESCRIPTION_L("elm.padding.left",
24004                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
24005                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
24006                fixed: 1 1;
24007             )
24008             GENLIST_DESCRIPTION_FLIP_ENABLED
24009          }
24010          GENLIST_PART_PADDING_LEFT_TO("elm.padding.icon1.right", "elm.icon.1", GENLIST_PADDING_SIZE_DEFAULT)
24011          part { name: "elm.text.1";
24012             clip_to: "disclip";
24013             type: TEXT;
24014             scale: 1;
24015             GENLIST_DESCRIPTION("elm.padding.icon1.right", "elm.padding.text4.left", "elm.padding.top", "elm.text.3",
24016                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24017                min: 0 60;
24018                text {
24019                   font: "SLP:style=Roman";
24020                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
24021                   min: 0 1;
24022                   align: 0.0 0.5;
24023                   text_class: "list_item";
24024                }
24025             )
24026             description { state: "read" 0.0;
24027                inherit: "default" 0.0;
24028                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
24029             }
24030             description { state: "selected" 0.0;
24031                inherit: "default" 0.0;
24032                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
24033             }
24034             GENLIST_DESCRIPTION_FLIP_ENABLED
24035          }
24036          GENLIST_PART_PADDING_RIGHT_TO("elm.padding.text4.left", "elm.bubble", GENLIST_PADDING_SIZE_DEFAULT)
24037          part { name: "elm.bubble";
24038             clip_to: "disclip";
24039             type: IMAGE;
24040             description { state: "default" 0.0;
24041                rel1.to: "elm.text.4";
24042                rel2.to: "elm.text.4";
24043                // bubble is larger than text in X axis (left, right)
24044                rel1.offset: -5 0;
24045                rel2.offset: 5 0;
24046                image {
24047                   normal: "00_winset_list_bubble_bg.png";
24048                   border:  6 6 0 0;
24049                }
24050             }
24051          }
24052          part { name: "elm.text.4";
24053             clip_to: "disclip";
24054             type: TEXT;
24055             scale: 1;
24056             GENLIST_DESCRIPTION_RTB("elm.padding.right", "elm.padding.top", "elm.text.2",
24057                // bubble is larger than text in X axis (left, right)
24058                rel1.offset: -5 0;
24059                rel2.offset: -5 0;
24060                color: GENLIST_LIST_BUBBLE_TEXT_COLOR;
24061                min: 0 48;
24062                text {
24063                   font: "SLP:style=Medium";
24064                   size: GENLIST_FONT_32_INC;
24065                   min: 1 1;
24066                   align: 1 0.5;
24067                   text_class: "slp_medium";
24068                }
24069             )
24070             GENLIST_DESCRIPTION_FLIP_ENABLED
24071          }
24072          part { name: "elm.text.2";
24073             clip_to: "disclip";
24074             type: TEXT;
24075             scale: 1;
24076             GENLIST_DESCRIPTION_RB("elm.padding.right", "elm.padding.bottom",
24077                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
24078                min: 0 60;
24079                text {
24080                   font: "SLP:style=Medium";
24081                   size: GENLIST_LIST_SUB_TEXT_SIZE;
24082                   min: 1 1;
24083                   align: 0.5 0.5;
24084                   text_class: "slp_medium";
24085                }
24086             )
24087             description { state: "selected" 0.0;
24088                inherit: "default" 0.0;
24089                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
24090             }
24091             GENLIST_DESCRIPTION_FLIP_ENABLED
24092          }
24093          GENLIST_PART_PADDING_RIGHT_TO("elm.padding.text2.left", "elm.text.2", GENLIST_PADDING_SIZE_DEFAULT)
24094          part { name: "elm.text.3";
24095             clip_to: "disclip";
24096             type: TEXT;
24097             scale: 1;
24098             GENLIST_DESCRIPTION_LRB("elm.padding.icon1.right", "elm.padding.text2.left", "elm.padding.bottom",
24099                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
24100                align: 0 1;
24101                min: 0 48;
24102                text {
24103                   font: "SLP:style=Medium";
24104                   size: GENLIST_LIST_SUB_TEXT_SIZE;
24105                   min: 0 1;
24106                   align: 0.0 0.5;
24107                   text_class: "slp_medium";
24108                }
24109             )
24110             description { state: "selected" 0.0;
24111                inherit: "default" 0.0;
24112                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
24113             }
24114             GENLIST_DESCRIPTION_FLIP_ENABLED
24115          }
24116          GENLIST_PART_FLIP
24117          GENLIST_PART_DISCLIP
24118       }
24119       programs {
24120          // signal: elm,state,%s,active
24121          //   a "check" item named %s went active
24122          // signal: elm,state,%s,passive
24123          //   a "check" item named %s went passive
24124          // default is passive
24125          program { name: "go_active";
24126             signal: "elm,state,selected";
24127             source: "elm";
24128             action: STATE_SET "selected" 0.0;
24129             target: "bg_image";
24130             target: "elm.text.1";
24131             target: "elm.text.2";
24132             target: "elm.text.3";
24133          }
24134          program { name: "go_passive";
24135             signal: "elm,state,unselected";
24136             source: "elm";
24137             action: STATE_SET "default" 0.0;
24138             target: "bg_image";
24139             target: "elm.text.1";
24140             target: "elm.text.2";
24141             target: "elm.text.3";
24142             transition: LINEAR 0.1;
24143          }
24144          program { name: "go_read";
24145             signal: "elm,state,read";
24146             source: "elm";
24147             action: STATE_SET "read" 0.0;
24148             target: "elm.text.1";
24149          }
24150          program { name: "go_unread";
24151             signal: "elm,state,unread";
24152             source: "elm";
24153             action: STATE_SET "default" 0.0;
24154             target: "elm.text.1";
24155          }
24156       }
24157    }
24158    // 2.2.2.43
24159    group { name: "elm/genlist/item/2text.4icon.1/default";
24160       alias: "elm/genlist/item_odd/2text.4icon.1/default";
24161       alias: "elm/genlist/item_compress/2text.4icon.1/default";
24162       alias: "elm/genlist/item_compress_odd/2text.4icon.1/default";
24163       data.item: "texts" "elm.text.1 elm.text.2";
24164       data.item: "stacking" "above";
24165       data.item: "selectraise" "on";
24166       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
24167       data.item: "flips" "elm.flip.content";
24168       parts {
24169          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24170          GENLIST_PART_BG_IMAGE
24171          GENLIST_PART_BOTTOM_LINE
24172          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24173          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24174          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24175          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24176          part { name: "elm.icon.1";
24177             clip_to: "disclip";
24178             type: SWALLOW;
24179             scale: 1;
24180             description { state: "default" 0.0;
24181                min: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
24182                max: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
24183                fixed: 1 1;
24184                rel1 {
24185                   relative: 0.0 1.0;
24186                   to_x: "elm.padding.right";
24187                   to_y: "elm.padding.top";
24188                }
24189                rel2 {
24190                   relative: 0.0 0.0;
24191                   to_x: "elm.padding.right";
24192                   to_y: "elm.padding.bottom";
24193                }
24194                align: 1.0 0.5;
24195             }
24196             GENLIST_DESCRIPTION_FLIP_ENABLED
24197          }
24198          part { name: "elm.padding.text1.right";
24199             clip_to: "disclip";
24200             type: RECT;
24201             scale: 1;
24202             description { state: "default" 0.0;
24203                fixed: 1 1 ;
24204                align: 1.0 0.0;
24205                visible: 0;
24206                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24207                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24208                rel1 { relative: 0.0 1.0;
24209                   to_x: "elm.icon.1";
24210                   to_y: "elm.padding.top";
24211                }
24212                rel2 { relative: 0.0 1.0;
24213                   to_x: "elm.icon.1";
24214                   to_y: "elm.padding.top";
24215                }
24216             }
24217          }
24218          part { name: "elm.text.1";
24219             clip_to: "disclip";
24220             type: TEXT;
24221             scale: 1;
24222             description { state: "default" 0.0;
24223                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24224                fixed: 0 1;
24225                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24226                rel1 { relative: 1.0 1.0;
24227                   to_x: "elm.padding.left";
24228                   to_y: "elm.padding.top";
24229                }
24230                rel2 { relative: 0.0 1.0;
24231                   to_x: "elm.padding.text1.right";
24232                   to_y: "elm.padding.text1.right";
24233                }
24234                text {
24235                   font: "SLP:style=Roman";
24236                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
24237                   min: 0 1;
24238                   align: 0.0 0.5;
24239                   text_class: "list_item";
24240                }
24241             }
24242             description { state: "read" 0.0;
24243                inherit: "default" 0.0;
24244                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
24245             }
24246             description { state: "selected" 0.0;
24247                inherit: "default" 0.0;
24248                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
24249             }
24250             GENLIST_DESCRIPTION_FLIP_ENABLED
24251          }
24252          part { name: "elm.padding.icon2.right";
24253             clip_to: "disclip";
24254             type: RECT;
24255             scale: 1;
24256             description { state: "default" 0.0;
24257                fixed: 1 1;
24258                align: 1.0 0.0;
24259                visible: 0;
24260                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24261                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24262                rel1 { relative: 0 1;
24263                   to_x: "elm.icon.1";
24264                   to_y: "elm.text.1";
24265                }
24266                rel2 { relative: 0 0;
24267                   to_x: "elm.icon.1";
24268                   to_y: "elm.padding.bottom";
24269                }
24270             }
24271          }
24272          part { name: "elm.icon.2";
24273             clip_to: "disclip";
24274             type: SWALLOW;
24275             scale: 1;
24276             description { state: "default" 0.0;
24277                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24278                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24279                fixed: 1 1;
24280                rel1 {
24281                   relative: 0.0 1.0;
24282                   to_x: "elm.padding.icon2.right";
24283                   to_y: "elm.text.1";
24284                }
24285                rel2 {
24286                   relative: 0.0 0.0;
24287                   to_x: "elm.padding.icon2.right";
24288                   to_y: "elm.padding.bottom";
24289                }
24290                align: 1.0 0.5;
24291             }
24292             GENLIST_DESCRIPTION_FLIP_ENABLED
24293          }
24294          part { name: "elm.padding.icon3.right";
24295             clip_to: "disclip";
24296             type: RECT;
24297             scale: 1;
24298             description { state: "default" 0.0;
24299                fixed: 1 1;
24300                align: 1.0 0.0;
24301                visible: 0;
24302                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24303                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24304                rel1 { relative: 0 1;
24305                   to_x: "elm.icon.2";
24306                   to_y: "elm.text.1";
24307                }
24308                rel2 { relative: 0 0;
24309                   to_x: "elm.icon.2";
24310                   to_y: "elm.padding.bottom";
24311                }
24312             }
24313          }
24314          part { name: "elm.icon.3";
24315             clip_to: "disclip";
24316             type: SWALLOW;
24317             scale: 1;
24318             description { state: "default" 0.0;
24319                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24320                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24321                fixed: 1 1;
24322                rel1 {
24323                   relative: 0.0 1.0;
24324                   to_x: "elm.padding.icon3.right";
24325                   to_y: "elm.text.1";
24326                }
24327                rel2 {
24328                   relative: 0.0 0.0;
24329                   to_x: "elm.padding.icon3.right";
24330                   to_y: "elm.padding.bottom";
24331                }
24332                align: 1.0 0.5;
24333             }
24334             GENLIST_DESCRIPTION_FLIP_ENABLED
24335          }
24336          part { name: "elm.padding.icon4.right";
24337             clip_to: "disclip";
24338             type: RECT;
24339             scale: 1;
24340             description { state: "default" 0.0;
24341                fixed: 1 1;
24342                align: 1.0 0.0;
24343                visible: 0;
24344                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24345                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24346                rel1 { relative: 0 1;
24347                   to_x: "elm.icon.3";
24348                   to_y: "elm.text.1";
24349                }
24350                rel2 { relative: 0 0;
24351                   to_x: "elm.icon.3";
24352                   to_y: "elm.padding.bottom";
24353                }
24354             }
24355          }
24356          part { name: "elm.icon.4";
24357             clip_to: "disclip";
24358             type: SWALLOW;
24359             scale: 1;
24360             description { state: "default" 0.0;
24361                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24362                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24363                fixed: 1 1;
24364                rel1 {
24365                   relative: 0.0 1.0;
24366                   to_x: "elm.padding.icon4.right";
24367                   to_y: "elm.text.1";
24368                }
24369                rel2 {
24370                   relative: 0.0 0.0;
24371                   to_x: "elm.padding.icon4.right";
24372                   to_y: "elm.padding.bottom";
24373                }
24374                align: 1.0 0.5;
24375             }
24376             GENLIST_DESCRIPTION_FLIP_ENABLED
24377          }
24378          part { name: "elm.padding.text2.right";
24379             clip_to: "disclip";
24380             type: RECT;
24381             scale: 1;
24382             description { state: "default" 0.0;
24383                fixed: 1 1;
24384                align: 1.0 0.0;
24385                visible: 0;
24386                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24387                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24388                rel1 { relative: 0 1;
24389                   to_x: "elm.icon.4";
24390                   to_y: "elm.text.1";
24391                }
24392                rel2 { relative: 0 0;
24393                   to_x: "elm.icon.4";
24394                   to_y: "elm.padding.bottom";
24395                }
24396             }
24397          }
24398          part { name: "elm.text.2";
24399             clip_to: "disclip";
24400             type: TEXT;
24401             scale: 1;
24402             description { state: "default" 0.0;
24403                color: GENLIST_NAME_TEXT_COLOR;
24404                fixed: 0 1;
24405                align: 0.0 0.0;
24406                min: 0 GENLIST_SIZE_48_INC;
24407                rel1 { relative: 1 1;
24408                   to_x: "elm.padding.left";
24409                   to_y: "elm.text.1";
24410                }
24411                rel2 { relative: 0 1;
24412                   to_x: "elm.padding.text2.right";
24413                   to_y: "elm.padding.text2.right";
24414                }
24415                text {
24416                   font: "SLP:style=Medium";
24417                   size: GENLIST_FONT_32_INC;
24418                   min: 0 1;
24419                   align: 0.0 0.5;
24420                   text_class: "slp_medium";
24421                }
24422             }
24423             description { state: "selected" 0.0;
24424                inherit: "default" 0.0;
24425                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
24426             }
24427             GENLIST_DESCRIPTION_FLIP_ENABLED
24428          }
24429          GENLIST_PART_FLIP
24430          GENLIST_PART_DISCLIP
24431       }
24432       programs {
24433          // signal: elm,state,%s,active
24434          //   a "check" item named %s went active
24435          // signal: elm,state,%s,passive
24436          //   a "check" item named %s went passive
24437          // default is passive
24438          program { name: "go_active";
24439             signal: "elm,state,selected";
24440             source: "elm";
24441             action: STATE_SET "selected" 0.0;
24442             target: "bg_image";
24443             target: "elm.text.1";
24444          }
24445          program { name: "go_passive";
24446             signal: "elm,state,unselected";
24447             source: "elm";
24448             action: STATE_SET "default" 0.0;
24449             target: "bg_image";
24450             target: "elm.text.1";
24451             transition: LINEAR 0.1;
24452          }
24453          program { name: "go_read";
24454             signal: "elm,state,read";
24455             source: "elm";
24456             action: STATE_SET "read" 0.0;
24457             target: "elm.text.1";
24458          }
24459          program { name: "go_unread";
24460             signal: "elm,state,unread";
24461             source: "elm";
24462             action: STATE_SET "default" 0.0;
24463             target: "elm.text.1";
24464          }
24465       }
24466    }
24467
24468    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.2/default";
24469       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.2/default";
24470       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.2/default";
24471       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.2/default";
24472       alias: "elm/genlist/item/dialogue.2text.1icon.2/default";
24473       alias: "elm/genlist/item_odd/dialogue.2text.1icon.2/default";
24474       alias: "elm/genlist/item_compress/dialogue.2text.1icon.2/default";
24475       alias: "elm/genlist/item_compress_odd/dialogue.2text.1icon.2/default";
24476       alias: "elm/layout/dialogue/bg/2text.1icon.2";
24477       data.item: "stacking" "above";
24478       data.item: "selectraise" "on";
24479       data.item: "texts" "elm.text.1 elm.text.2";
24480       data.item: "contents" "elm.icon";
24481       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
24482       images {
24483           image: "00_list_thumbnail_bg.png" COMP;
24484       }
24485       parts {
24486          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_291_INC )
24487          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
24488          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_32_INC )
24489          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24490          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24491          part { name: "elm.icon.bg";
24492             scale: 1;
24493             description { state: "default" 0.0;
24494                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
24495                fixed: 1 1;
24496                align: 0.0 0.8;
24497                rel1 {
24498                   relative: 1.0 0.5;
24499                   to_x: "elm.padding.left";
24500                }
24501                rel2 {
24502                   relative: 1.0 0.5;
24503                   to_x: "elm.padding.left";
24504                }
24505                image {
24506                   normal: "00_list_thumbnail_bg.png";
24507                   border: 1 1 1 1;
24508                   border_scale: 1;
24509                   middle: NONE;
24510                }
24511             }
24512          }
24513          part { name: "elm.icon";
24514             type: SWALLOW;
24515             description { state: "default" 0.0;
24516                rel1.to: "elm.icon.bg";
24517                rel2.to: "elm.icon.bg";
24518             }
24519          }
24520          part { name: "elm.padding.icon.right";
24521             type: RECT;
24522             mouse_events: 0;
24523             scale: 1;
24524             description { state: "default" 0.0;
24525                min: GENLIST_PADDING_16_INC 0;
24526                fixed: 1 0;
24527                rel1 {
24528                    relative: 1.0 0.0;
24529                    to_x: "elm.icon.bg";
24530                }
24531                rel2.to_x: "elm.icon.bg";
24532                visible: 0;
24533                align: 0.0 0.5;
24534             }
24535          }
24536          part { name: "elm.padding.text.left";
24537             type: RECT;
24538             mouse_events: 0;
24539             scale: 1;
24540             description { state: "default" 0.0;
24541                min: GENLIST_PADDING_16_INC 0;
24542                fixed: 1 0;
24543                rel1 {
24544                    relative: 1.0 1.0;
24545                    to_x: "elm.padding.icon.right";
24546                    to_y: "elm.padding.top";
24547                }
24548                rel2.to_x: "elm.padding.icon.right";
24549                visible: 0;
24550                align: 1.0 0.5;
24551             }
24552          }
24553          part { name: "vertical_line";
24554             type: RECT;
24555             mouse_events: 0;
24556             description { state: "default" 0.0;
24557                min: 1 0;
24558                fixed: 1 0;
24559                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24560                rel1 {
24561                   relative: 1.0 1.0;
24562                   to_x: "elm.padding.text.left";
24563                   to_y: "elm.padding.top";
24564                }
24565                rel2 {
24566                   relative: 1.0 0.0;
24567                   to_x: "elm.padding.text.left";
24568                   to_y: "elm.padding.bottom";
24569                }
24570                align: 0.0 0.5;
24571             }
24572          }
24573          part { name: "text_vertical_rect";
24574             type: RECT;
24575             mouse_events: 0;
24576             description { state: "default" 0.0;
24577                min: GENLIST_PADDING_16_INC 0;
24578                fixed: 1 0;
24579                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
24580                rel1 {
24581                   relative: 1.0 1.0;
24582                   to_x: "vertical_line";
24583                   to_y: "elm.padding.top";
24584                }
24585                rel2 {
24586                   relative: 1.0 0.0;
24587                   to_x: "elm.padding.text.left";
24588                   to_y: "elm.padding.bottom";
24589                }
24590                align: 0.0 0.5;
24591             }
24592          }
24593          part { name: "elm.padding.text.right";
24594             type: RECT;
24595             mouse_events: 0;
24596             scale: 1;
24597             description { state: "default" 0.0;
24598                min: GENLIST_PADDING_16_INC 0;
24599                fixed: 1 0;
24600                rel1 {
24601                    relative: 1.0 0.0;
24602                    to_x: "text_vertical_rect";
24603                }
24604                rel2.to_x: "text_vertical_rect";
24605                visible: 0;
24606                align: 0.0 0.5;
24607             }
24608          }
24609          part { name: "text_top_line";
24610             type: RECT;
24611             mouse_events: 0;
24612             description { state: "default" 0.0;
24613                min: 0 1;
24614                fixed: 0 1;
24615                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24616                rel1 {
24617                   relative: 1.0 0.0;
24618                   to_x: "text_vertical_rect";
24619                   to_y: "text_vertical_rect";
24620                }
24621                rel2 {
24622                   relative: 1.0 0.0;
24623                   to_y: "text_vertical_rect";
24624                }
24625                align: 0.0 0.0;
24626             }
24627          }
24628          part { name: "text_center_line";
24629             type: RECT;
24630             mouse_events: 0;
24631             description { state: "default" 0.0;
24632                min: 0 1;
24633                fixed: 0 1;
24634                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24635                rel1 {
24636                   relative: 1.0 0.5;
24637                   to_x: "text_vertical_rect";
24638                }
24639                rel2.relative: 1.0 0.5;
24640                align: 0.5 0.5;
24641             }
24642          }
24643          part { name: "text_bottom_line";
24644             type: RECT;
24645             mouse_events: 0;
24646             description { state: "default" 0.0;
24647                min: 0 1;
24648                fixed: 0 1;
24649                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24650                rel1 {
24651                   relative: 1.0 1.0;
24652                   to_x: "text_vertical_rect";
24653                   to_y: "text_vertical_rect";
24654                }
24655                rel2 {
24656                   relative: 1.0 1.0;
24657                   to_y: "text_vertical_rect";
24658                }
24659                align: 0.0 1.0;
24660             }
24661          }
24662          part { name: "elm.text.bg.1";
24663             clip_to: "disclip";
24664             type: RECT;
24665             mouse_events: 0;
24666             scale: 1;
24667             description { state: "default" 0.0;
24668                rel1 {
24669                   relative: 1.0 1.0;
24670                   to_x: "text_vertical_rect";
24671                   to_y: "text_top_line";
24672                }
24673                rel2 {
24674                   relative: 1.0 0.0;
24675                   to_x: "elm.padding.right";
24676                   to_y: "text_center_line";
24677                }
24678                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
24679             }
24680          }
24681          part { name: "elm.text.1";
24682             type: TEXT;
24683             mouse_events: 0;
24684             scale: 1;
24685             description { state: "default" 0.0;
24686                min: 0 GENLIST_SIZE_54_INC;
24687                rel1 {
24688                   relative: 1.0 0.0;
24689                   to_x: "elm.padding.text.right";
24690                   to_y: "elm.text.bg.1";
24691                }
24692                rel2 {
24693                   relative: 0.0 1.0;
24694                   to_x: "elm.padding.right";
24695                   to_y: "elm.text.bg.1";
24696                }
24697                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24698                text {
24699                   font: "SLP:style=Roman";
24700                   size: GENLIST_FONT_48_INC;
24701                   align: 0.0 0.5;
24702                   text_class: "list_item";
24703                }
24704             }
24705             GENLIST_DESCRIPTION_FLIP_ENABLED
24706          }
24707          part { name: "elm.flip.content.1";
24708             clip_to: "disclip";
24709             type: SWALLOW;
24710             description { state: "default" 0.0;
24711                visible: 0;
24712                fixed: 1 1;
24713                rel1.to: "elm.text.1";
24714                rel2.to: "elm.text.1";
24715             }
24716             description { state: "flip_enabled" 0.0;
24717                inherit: "default" 0.0;
24718                visible: 1;
24719             }
24720          }
24721          part { name: "elm.text.bg.2";
24722             clip_to: "disclip";
24723             type: RECT;
24724             mouse_events: 0;
24725             scale: 1;
24726             description { state: "default" 0.0;
24727                rel1 {
24728                   relative: 1.0 1.0;
24729                   to_x: "text_vertical_rect";
24730                   to_y: "text_center_line";
24731                }
24732                rel2 {
24733                   relative: 1.0 0.0;
24734                   to_x: "elm.padding.right";
24735                   to_y: "text_bottom_line";
24736                }
24737                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
24738             }
24739          }
24740          part { name: "elm.text.2";
24741             clip_to: "disclip";
24742             type: TEXT;
24743             mouse_events: 0;
24744             scale: 1;
24745             description { state: "default" 0.0;
24746                min: 0 GENLIST_SIZE_54_INC;
24747                rel1 {
24748                   relative: 1.0 0.0;
24749                   to_x: "elm.padding.text.right";
24750                   to_y: "elm.text.bg.2";
24751                }
24752                rel2 {
24753                   relative: 0.0 1.0;
24754                   to_x: "elm.padding.right";
24755                   to_y: "elm.text.bg.2";
24756                }
24757                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24758                text {
24759                   font: "SLP:style=Roman";
24760                   size: GENLIST_FONT_48_INC;
24761                   align: 0.0 0.5;
24762                   text_class: "slp_roman";
24763                }
24764             }
24765             GENLIST_DESCRIPTION_FLIP_ENABLED
24766          }
24767          part { name: "elm.flip.content.2";
24768             clip_to: "disclip";
24769             type: SWALLOW;
24770             description { state: "default" 0.0;
24771                visible: 0;
24772                fixed: 1 1;
24773                rel1.to: "elm.text.2";
24774                rel2.to: "elm.text.2";
24775             }
24776             description { state: "flip_enabled" 0.0;
24777                inherit: "default" 0.0;
24778                visible: 1;
24779             }
24780          }
24781          GENLIST_PART_DISCLIP
24782       }
24783       programs {
24784          // signal: elm,state,%s,active
24785          //   a "check" item named %s went active
24786          // signal: elm,state,%s,passive
24787          //   a "check" item named %s went passive
24788          // default is passive
24789          /*program { name: "go_active";
24790             signal: "elm,state,selected";
24791             source: "elm";
24792             action: STATE_SET "selected" 0.0;
24793             target: "elm.text";
24794             target: "elm.text.sub";
24795          }
24796          program { name: "go_passive";
24797             signal: "elm,state,unselected";
24798             source: "elm";
24799             action: STATE_SET "default" 0.0;
24800             target: "elm.text";
24801             target: "elm.text.sub";
24802             transition: LINEAR 0.1;
24803          }*/
24804          program { name: "go_disabled";
24805             signal: "elm,state,disabled";
24806             source: "elm";
24807             action: STATE_SET "disabled" 0.0;
24808             target: "disclip";
24809          }
24810          program { name: "go_enabled";
24811             signal: "elm,state,enabled";
24812             source: "elm";
24813             action: STATE_SET "default" 0.0;
24814             target: "disclip";
24815          }
24816          program { name: "flip_enabled";
24817             signal: "elm,state,flip,enabled";
24818             source: "elm";
24819             action: STATE_SET "flip_enabled" 0.0;
24820             target: "elm.text.1";
24821             target: "elm.text.2";
24822             target: "elm.flip.content.1";
24823             target: "elm.flip.content.2";
24824          }
24825          program { name: "flip_disabled";
24826             signal: "elm,state,flip,disabled";
24827             source: "elm";
24828             action: STATE_SET "default" 0.0;
24829             target: "elm.text.1";
24830             target: "elm.text.2";
24831             target: "elm.flip.content.1";
24832             target: "elm.flip.content.2";
24833          }
24834       }
24835    }
24836
24837 /* non-bottom-border-area version of 2text.1icon.2 */
24838    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.3/default";
24839       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.3/default";
24840       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.3/default";
24841       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.3/default";
24842       alias: "elm/layout/dialogue/bg/2text.1icon.3";
24843       data.item: "stacking" "above";
24844       data.item: "selectraise" "on";
24845       data.item: "texts" "elm.text.1 elm.text.2";
24846       data.item: "contents" "elm.icon";
24847       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
24848       images {
24849           image: "00_list_thumbnail_bg.png" COMP;
24850       }
24851       parts {
24852          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_260_INC )
24853          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
24854          GENLIST_PART_PADDING_BOTTOM( 0 )
24855          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24856          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24857          part { name: "elm.icon.bg";
24858             scale: 1;
24859             description { state: "default" 0.0;
24860                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
24861                fixed: 1 1;
24862                align: 0.0 0.7;
24863                rel1 {
24864                   relative: 1.0 0.5;
24865                   to_x: "elm.padding.left";
24866                }
24867                rel2 {
24868                   relative: 1.0 0.5;
24869                   to_x: "elm.padding.left";
24870                }
24871                image {
24872                   normal: "00_list_thumbnail_bg.png";
24873                   border: 1 1 1 1;
24874                   border_scale: 1;
24875                   middle: NONE;
24876                }
24877             }
24878          }
24879          part { name: "elm.icon";
24880             type: SWALLOW;
24881             description { state: "default" 0.0;
24882                rel1.to: "elm.icon.bg";
24883                rel2.to: "elm.icon.bg";
24884             }
24885          }
24886          part { name: "elm.padding.icon.right";
24887             type: RECT;
24888             mouse_events: 0;
24889             scale: 1;
24890             description { state: "default" 0.0;
24891                min: GENLIST_PADDING_16_INC 0;
24892                fixed: 1 0;
24893                rel1 {
24894                    relative: 1.0 0.0;
24895                    to_x: "elm.icon.bg";
24896                }
24897                rel2.to_x: "elm.icon.bg";
24898                visible: 0;
24899                align: 0.0 0.5;
24900             }
24901          }
24902          part { name: "elm.padding.text.left";
24903             type: RECT;
24904             mouse_events: 0;
24905             scale: 1;
24906             description { state: "default" 0.0;
24907                min: GENLIST_PADDING_16_INC 0;
24908                fixed: 1 0;
24909                rel1 {
24910                    relative: 1.0 1.0;
24911                    to_x: "elm.padding.icon.right";
24912                    to_y: "elm.padding.top";
24913                }
24914                rel2.to_x: "elm.padding.icon.right";
24915                visible: 0;
24916                align: 1.0 0.5;
24917             }
24918          }
24919          part { name: "vertical_line";
24920             type: RECT;
24921             mouse_events: 0;
24922             description { state: "default" 0.0;
24923                visible: 0;
24924                rel1 {
24925                   relative: 1.0 1.0;
24926                   to_x: "elm.padding.text.left";
24927                   to_y: "elm.padding.top";
24928                }
24929                rel2 {
24930                   relative: 1.0 0.0;
24931                   to_x: "elm.padding.text.left";
24932                   to_y: "elm.padding.bottom";
24933                }
24934             }
24935          }
24936          part { name: "text_vertical_rect";
24937             type: RECT;
24938             mouse_events: 0;
24939             scale: 1;
24940             description { state: "default" 0.0;
24941                min: GENLIST_SIZE_16_INC 0;
24942                fixed: 1 0;
24943                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
24944                rel1 {
24945                   relative: 1.0 1.0;
24946                   to_x: "vertical_line";
24947                   to_y: "elm.padding.top";
24948                }
24949                rel2 {
24950                   relative: 1.0 0.0;
24951                   to_x: "elm.padding.text.left";
24952                   to_y: "elm.padding.bottom";
24953                }
24954                align: 0.0 0.5;
24955             }
24956          }
24957          part { name: "elm.padding.text.right";
24958             type: RECT;
24959             mouse_events: 0;
24960             scale: 1;
24961             description { state: "default" 0.0;
24962                min: GENLIST_PADDING_16_INC 0;
24963                fixed: 1 0;
24964                rel1 {
24965                    relative: 1.0 0.0;
24966                    to_x: "text_vertical_rect";
24967                }
24968                rel2.to_x: "text_vertical_rect";
24969                visible: 0;
24970                align: 0.0 0.5;
24971             }
24972          }
24973          part { name: "text_top_line";
24974             type: RECT;
24975             mouse_events: 0;
24976             description { state: "default" 0.0;
24977                min: 0 1;
24978                fixed: 0 1;
24979                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24980                rel1 {
24981                   relative: 1.0 0.0;
24982                   to_x: "text_vertical_rect";
24983                   to_y: "text_vertical_rect";
24984                }
24985                rel2 {
24986                   relative: 1.0 0.0;
24987                   to_y: "text_vertical_rect";
24988                }
24989                align: 0.0 0.0;
24990             }
24991          }
24992          part { name: "text_center_line";
24993             type: RECT;
24994             mouse_events: 0;
24995             description { state: "default" 0.0;
24996                min: 0 1;
24997                fixed: 0 1;
24998                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24999                rel1 {
25000                   relative: 1.0 0.56;
25001                   to_x: "text_vertical_rect";
25002                }
25003                rel2.relative: 1.0 0.56;
25004                align: 0.5 0.5;
25005             }
25006          }
25007          part { name: "text_bottom_line";
25008             type: RECT;
25009             mouse_events: 0;
25010             description { state: "default" 0.0;
25011                min: 0 1;
25012                fixed: 0 1;
25013                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25014                rel1 {
25015                   relative: 1.0 1.0;
25016                   to_x: "text_vertical_rect";
25017                   to_y: "text_vertical_rect";
25018                }
25019                rel2 {
25020                   relative: 1.0 1.0;
25021                   to_y: "text_vertical_rect";
25022                }
25023                align: 0.0 1.0;
25024             }
25025          }
25026          part { name: "elm.text.bg.1";
25027             clip_to: "disclip";
25028             type: RECT;
25029             mouse_events: 0;
25030             scale: 1;
25031             description { state: "default" 0.0;
25032                rel1 {
25033                   relative: 1.0 1.0;
25034                   to_x: "text_vertical_rect";
25035                   to_y: "text_top_line";
25036                }
25037                rel2 {
25038                   relative: 1.0 0.0;
25039                   to_x: "elm.padding.right";
25040                   to_y: "text_center_line";
25041                }
25042                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
25043             }
25044          }
25045          part { name: "elm.text.1";
25046             type: TEXT;
25047             mouse_events: 0;
25048             scale: 1;
25049             description { state: "default" 0.0;
25050                min: 0 GENLIST_SIZE_54_INC;
25051                rel1 {
25052                   relative: 1.0 0.0;
25053                   to_x: "elm.padding.text.right";
25054                   to_y: "elm.text.bg.1";
25055                }
25056                rel2 {
25057                   relative: 0.0 1.0;
25058                   to_x: "elm.padding.right";
25059                   to_y: "elm.text.bg.1";
25060                }
25061                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
25062                text {
25063                   font: "SLP:style=Roman";
25064                   size: GENLIST_FONT_48_INC;
25065                   align: 0.0 0.5;
25066                   text_class: "list_item";
25067                }
25068             }
25069             GENLIST_DESCRIPTION_FLIP_ENABLED
25070          }
25071          part { name: "elm.flip.content.1";
25072             type: SWALLOW;
25073             description { state: "default" 0.0;
25074                visible: 0;
25075                fixed: 1 1;
25076                rel1.to: "elm.text.1";
25077                rel2.to: "elm.text.1";
25078             }
25079             description { state: "flip_enabled" 0.0;
25080                inherit: "default" 0.0;
25081                visible: 1;
25082             }
25083          }
25084          part { name: "elm.text.bg.2";
25085             clip_to: "disclip";
25086             type: RECT;
25087             mouse_events: 0;
25088             scale: 1;
25089             description { state: "default" 0.0;
25090                rel1 {
25091                   relative: 1.0 1.0;
25092                   to_x: "text_vertical_rect";
25093                   to_y: "text_center_line";
25094                }
25095                rel2 {
25096                   relative: 1.0 0.0;
25097                   to_x: "elm.padding.right";
25098                   to_y: "text_bottom_line";
25099                }
25100                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
25101             }
25102          }
25103          part { name: "elm.text.2";
25104             clip_to: "disclip";
25105             type: TEXT;
25106             mouse_events: 0;
25107             scale: 1;
25108             description { state: "default" 0.0;
25109                min: 0 GENLIST_SIZE_54_INC;
25110                rel1 {
25111                   relative: 1.0 0.0;
25112                   to_x: "elm.padding.text.right";
25113                   to_y: "elm.text.bg.2";
25114                }
25115                rel2 {
25116                   relative: 0.0 1.0;
25117                   to_x: "elm.padding.right";
25118                   to_y: "elm.text.bg.2";
25119                }
25120                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
25121                text {
25122                   font: "SLP:style=Roman";
25123                   size: GENLIST_FONT_48_INC;
25124                   text_class: "slp_roman";
25125                }
25126             }
25127             GENLIST_DESCRIPTION_FLIP_ENABLED
25128          }
25129          part { name: "elm.flip.content.2";
25130             type: SWALLOW;
25131             description { state: "default" 0.0;
25132                visible: 0;
25133                fixed: 1 1;
25134                rel1.to: "elm.text.2";
25135                rel2.to: "elm.text.2";
25136             }
25137             description { state: "flip_enabled" 0.0;
25138                inherit: "default" 0.0;
25139                visible: 1;
25140             }
25141          }
25142          GENLIST_PART_DISCLIP
25143       }
25144       programs {
25145          // signal: elm,state,%s,active
25146          //   a "check" item named %s went active
25147          // signal: elm,state,%s,passive
25148          //   a "check" item named %s went passive
25149          // default is passive
25150          /*program { name: "go_active";
25151             signal: "elm,state,selected";
25152             source: "elm";
25153             action: STATE_SET "selected" 0.0;
25154             target: "elm.text";
25155             target: "elm.text.sub";
25156          }
25157          program { name: "go_passive";
25158             signal: "elm,state,unselected";
25159             source: "elm";
25160             action: STATE_SET "default" 0.0;
25161             target: "elm.text";
25162             target: "elm.text.sub";
25163             transition: LINEAR 0.1;
25164          }*/
25165          program { name: "go_disabled";
25166             signal: "elm,state,disabled";
25167             source: "elm";
25168             action: STATE_SET "disabled" 0.0;
25169             target: "disclip";
25170          }
25171          program { name: "go_enabled";
25172             signal: "elm,state,enabled";
25173             source: "elm";
25174             action: STATE_SET "default" 0.0;
25175             target: "disclip";
25176          }
25177          program { name: "flip_enabled";
25178             signal: "elm,state,flip,enabled";
25179             source: "elm";
25180             action: STATE_SET "flip_enabled" 0.0;
25181             target: "elm.text.1";
25182             target: "elm.text.2";
25183             target: "elm.flip.content.1";
25184             target: "elm.flip.content.2";
25185          }
25186          program { name: "flip_disabled";
25187             signal: "elm,state,flip,disabled";
25188             source: "elm";
25189             action: STATE_SET "default" 0.0;
25190             target: "elm.text.1";
25191             target: "elm.text.2";
25192             target: "elm.flip.content.1";
25193             target: "elm.flip.content.2";
25194          }
25195       }
25196    }
25197
25198    ///////// will be removed /////////
25199    group { name: "elm/genlist/item/dialogue/1icon.2/default";
25200       alias: "elm/genlist/item_odd/dialogue/1icon.2/default";
25201       alias: "elm/genlist/item_compress/dialogue/1icon.2/default";
25202       alias: "elm/genlist/item_compress_odd/dialogue/1icon.2/default";
25203       alias: "elm/layout/dialogue/1icon.2";
25204       data.item: "stacking" "above";
25205       data.item: "selectraise" "on";
25206       data.item: "contents" "elm.icon";
25207
25208       parts {
25209          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
25210          GENLIST_PART_DIALOGUE_BG_IMAGE
25211          GENLIST_PART_BOTTOM_LINE
25212          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
25213          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25214          GENLIST_PART_DIALOGUE_ITEM
25215          GENLIST_PART_DIALOGUE_RIGHT_LINE
25216          part { name: "elm.icon";
25217             clip_to: "disclip";
25218             type: SWALLOW;
25219             scale: 1;
25220             description { state: "default" 0.0;
25221                rel1 {
25222                   relative: 1.0 0.0;
25223                   to_x: "elm.padding.left";
25224                }
25225                rel2 {
25226                   relative: 0.0 1.0;
25227                   to_x: "elm.padding.right";
25228                }
25229             }
25230          }
25231          GENLIST_PART_DISCLIP
25232       }
25233       programs {
25234          // signal: elm,state,%s,active
25235          //   a "check" item named %s went active
25236          // signal: elm,state,%s,passive
25237          //   a "check" item named %s went passive
25238          // default is passive
25239          /*program { name: "go_active";
25240             signal: "elm,state,selected";
25241             source: "elm";
25242             action: STATE_SET "selected" 0.0;
25243             target: "bg_image";
25244             target: "elm.text";
25245          }
25246          program { name: "go_passive";
25247             signal: "elm,state,unselected";
25248             source: "elm";
25249             action: STATE_SET "default" 0.0;
25250             target: "bg_image";
25251             target: "elm.text";
25252             transition: LINEAR 0.1;
25253          }*/
25254          program { name: "go_disabled";
25255             signal: "elm,state,disabled";
25256             source: "elm";
25257             action: STATE_SET "disabled" 0.0;
25258             target: "disclip";
25259          }
25260          program { name: "go_enabled";
25261             signal: "elm,state,enabled";
25262             source: "elm";
25263             action: STATE_SET "default" 0.0;
25264             target: "disclip";
25265          }
25266       }
25267    }
25268
25269    //////////////////////// will be removed //////////////////////////
25270    group { name: "elm/genlist/item/dialogue/bg/2text.1icon/default";
25271       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon/default";
25272       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon/default";
25273       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon/default";
25274       alias: "elm/genlist/item/dialogue.1icon.2text/default";
25275       alias: "elm/genlist/item_odd/dialogue.1icon.2text/default";
25276       alias: "elm/genlist/item_compress/dialogue.1icon.2text/default";
25277       alias: "elm/genlist/item_compress_odd/dialogue.1icon.2text/default";
25278       alias: "elm/layout/dialogue/bg/2text.1icon";
25279       data.item: "stacking" "above";
25280       data.item: "selectraise" "on";
25281       data.item: "texts" "elm.text.1 elm.text.2";
25282       data.item: "contents" "elm.icon";
25283       images {
25284           image: "00_list_thumbnail_bg.png" COMP;
25285       }
25286       parts {
25287          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_142_INC )
25288          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_24_INC )
25289          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
25290          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
25291          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25292          part { name: "elm.padding.icon.bottom";
25293             type: RECT;
25294             mouse_events: 0;
25295             scale: 1;
25296             description { state: "default" 0.0;
25297                min: 0 1;
25298                fixed: 0 1;
25299                rel1 {
25300                   relative: 0.0 1.0;
25301                   to_x: "elm.padding.right";
25302                }
25303                rel2 {
25304                   relative: 0.0 1.0;
25305                   to_x: "elm.padding.right";
25306                }
25307                align: 1.0 1.0;
25308                visible: 0;
25309             }
25310          }
25311          part { name: "elm.icon.bg";
25312             scale: 1;
25313             description { state: "default" 0.0;
25314                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
25315                fixed: 1 1;
25316                align: 1.0 0.0;
25317                rel1 {
25318                   relative: 0.0 0.0;
25319                   to_x: "elm.padding.right";
25320                }
25321                rel2 {
25322                   relative: 0.0 0.0;
25323                   to_x: "elm.padding.right";
25324                   to_y: "elm.padding.icon.bottom";
25325                }
25326                image {
25327                   normal: "00_list_thumbnail_bg.png";
25328                   border: 1 1 1 1;
25329                   border_scale: 1;
25330                   middle: NONE;
25331                }
25332             }
25333          }
25334          part { name: "elm.icon";
25335             type: SWALLOW;
25336             description { state: "default" 0.0;
25337                rel1.to: "elm.icon.bg";
25338                rel2.to: "elm.icon.bg";
25339             }
25340          }
25341          part { name: "elm.padding.icon.left";
25342             type: RECT;
25343             mouse_events: 0;
25344             scale: 1;
25345             description { state: "default" 0.0;
25346                min: GENLIST_PADDING_16_INC 0;
25347                fixed: 1 0;
25348                rel1 {
25349                    relative: 0.0 0.0;
25350                    to_x: "elm.icon.bg";
25351                }
25352                rel2 {
25353                    relative: 0.0 1.0;
25354                    to_x: "elm.icon.bg";
25355                }
25356                visible: 0;
25357                align: 0.0 0.5;
25358             }
25359          }
25360          part { name: "elm.text.1";
25361             clip_to: "disclip";
25362             type: TEXT;
25363             mouse_events: 0;
25364             scale: 1;
25365             description { state: "default" 0.0;
25366                min: 0 GENLIST_SIZE_54_INC;
25367                fixed: 0 1;
25368                align: 0 0;
25369                rel1 {
25370                   relative: 1.0 1.0;
25371                   to_x: "elm.padding.left";
25372                   to_y: "elm.padding.top";
25373                }
25374                rel2 {
25375                   relative: 0.0 1.0;
25376                   to_x: "elm.padding.icon.left";
25377                   to_y: "elm.padding.top";
25378                }
25379                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
25380                text {
25381                   font: "SLP:style=Roman";
25382                   size: GENLIST_FONT_48_INC;
25383                   align: 0.0 0.5;
25384                   text_class: "list_item";
25385                }
25386             }
25387          }
25388          part { name: "elm.padding.text.1.bottom";
25389             type: RECT;
25390             mouse_events: 0;
25391             scale: 1;
25392             description { state: "default" 0.0;
25393                min: 0 GENLIST_PADDING_8_INC;
25394                fixed: 0 1;
25395                rel1 {
25396                    relative: 0.0 1.0;
25397                    to_y: "elm.text.1";
25398                }
25399                rel2.to_y: "elm.text.1";
25400                visible: 0;
25401                align: 0.0 0.0;
25402             }
25403          }
25404          part { name: "elm.text.2";
25405             clip_to: "disclip";
25406             type: TEXT;
25407             mouse_events: 0;
25408             scale: 1;
25409             description { state: "default" 0.0;
25410                rel1 {
25411                   relative: 1.0 1.0;
25412                   to_x: "elm.padding.left";
25413                   to_y: "elm.padding.text.1.bottom";
25414                }
25415                rel2 {
25416                   relative: 0.0 0.0;
25417                   to_x: "elm.padding.icon.left";
25418                   to_y: "elm.padding.bottom";
25419                }
25420                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
25421                text {
25422                   font: "SLP:style=Medium";
25423                   size: GENLIST_FONT_32_INC;
25424                   align: 0.0 0.5;
25425                   text_class: "slp_medium";
25426                }
25427             }
25428          }
25429          GENLIST_PART_DISCLIP
25430       }
25431       programs {
25432          // signal: elm,state,%s,active
25433          //   a "check" item named %s went active
25434          // signal: elm,state,%s,passive
25435          //   a "check" item named %s went passive
25436          // default is passive
25437          /*program { name: "go_active";
25438             signal: "elm,state,selected";
25439             source: "elm";
25440             action: STATE_SET "selected" 0.0;
25441             target: "elm.text";
25442             target: "elm.text.sub";
25443          }
25444          program { name: "go_passive";
25445             signal: "elm,state,unselected";
25446             source: "elm";
25447             action: STATE_SET "default" 0.0;
25448             target: "elm.text";
25449             target: "elm.text.sub";
25450             transition: LINEAR 0.1;
25451          }*/
25452          program { name: "go_disabled";
25453             signal: "elm,state,disabled";
25454             source: "elm";
25455             action: STATE_SET "disabled" 0.0;
25456             target: "disclip";
25457          }
25458          program { name: "go_enabled";
25459             signal: "elm,state,enabled";
25460             source: "elm";
25461             action: STATE_SET "default" 0.0;
25462             target: "disclip";
25463          }
25464       }
25465    }
25466
25467 // 4.3.2 (old)
25468    group { name: "elm/genlist/item/dialogue/bg/3text.1icon/default";
25469       alias: "elm/genlist/item_odd/dialogue/bg/3text.1icon/default";
25470       alias: "elm/genlist/item_compress/dialogue/bg/3text.1icon/default";
25471       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.1icon/default";
25472       alias: "elm/layout/dialogue/bg/3text.1icon";
25473       data.item: "stacking" "above";
25474       data.item: "selectraise" "on";
25475       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
25476       data.item: "contents" "elm.icon";
25477       images {
25478           image: "00_list_thumbnail_bg.png" COMP;
25479       }
25480       parts {
25481          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
25482          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_34_INC )
25483          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_34_INC )
25484          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
25485          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25486          part { name: "elm.icon.bg";
25487             scale: 1;
25488             description { state: "default" 0.0;
25489                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
25490                fixed: 1 1;
25491                align: 0.0 0.5;
25492                rel1 {
25493                   relative: 1.0 0.5;
25494                   to_x: "elm.padding.left";
25495                }
25496                rel2 {
25497                   relative: 1.0 0.5;
25498                   to_x: "elm.padding.left";
25499                }
25500                image {
25501                   normal: "00_list_thumbnail_bg.png";
25502                   border: 1 1 1 1;
25503                   border_scale: 1;
25504                   middle: NONE;
25505                }
25506             }
25507          }
25508          part { name: "elm.icon";
25509             type: SWALLOW;
25510             description { state: "default" 0.0;
25511                rel1.to: "elm.icon.bg";
25512                rel2.to: "elm.icon.bg";
25513             }
25514          }
25515          part { name: "elm.padding.icon.right";
25516             type: RECT;
25517             mouse_events: 0;
25518             scale: 1;
25519             description { state: "default" 0.0;
25520                min: GENLIST_PADDING_24_INC 0;
25521                fixed: 1 0;
25522                rel1 {
25523                    relative: 1.0 0.0;
25524                    to_x: "elm.icon.bg";
25525                }
25526                rel2.to_x: "elm.icon.bg";
25527                visible: 0;
25528                align: 0.0 0.5;
25529             }
25530          }
25531          part { name: "elm.text.1";
25532             clip_to: "disclip";
25533             type: TEXT;
25534             mouse_events: 0;
25535             scale: 1;
25536             description { state: "default" 0.0;
25537                min: 0 GENLIST_SIZE_54_INC;
25538                fixed: 0 1;
25539                align: 0 0;
25540                rel1 {
25541                   relative: 1.0 1.0;
25542                   to_x: "elm.padding.icon.right";
25543                   to_y: "elm.padding.top";
25544                }
25545                rel2 {
25546                   relative: 0.0 1.0;
25547                   to_x: "elm.padding.right";
25548                   to_y: "elm.padding.top";
25549                }
25550                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
25551                text {
25552                   font: "SLP:style=Roman";
25553                   size: GENLIST_FONT_48_INC;
25554                   align: 0.0 0.0;
25555                   text_class: "list_item";
25556                }
25557             }
25558          }
25559          part { name: "elm.text.2";
25560             clip_to: "disclip";
25561             type: TEXT;
25562             mouse_events: 0;
25563             scale: 1;
25564             description { state: "default" 0.0;
25565                rel1 {
25566                   relative: 1.0 1.0;
25567                   to_x: "elm.padding.icon.right";
25568                   to_y: "elm.text.1";
25569                }
25570                rel2 {
25571                   relative: 0.0 0.0;
25572                   to_x: "elm.padding.right";
25573                   to_y: "elm.text.3";
25574                }
25575                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
25576                text {
25577                   font: "SLP:style=Medium";
25578                   size: GENLIST_FONT_32_INC;
25579                   align: 0.0 1.0;
25580                   text_class: "slp_medium";
25581                }
25582             }
25583          }
25584          part { name: "elm.text.3";
25585             clip_to: "disclip";
25586             type: TEXT;
25587             mouse_events: 0;
25588             scale: 1;
25589             description { state: "default" 0.0;
25590                min: 0 GENLIST_ICON_SMALL_SIZE;
25591                fixed: 0 1;
25592                align: 0 1;
25593                rel1 {
25594                   relative: 1.0 0.0;
25595                   to_x: "elm.padding.icon.right";
25596                   to_y: "elm.padding.bottom";
25597                }
25598                rel2 {
25599                   relative: 0.0 0.0;
25600                   to_x: "elm.padding.right";
25601                   to_y: "elm.padding.bottom";
25602                }
25603                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
25604                text {
25605                   font: "SLP:style=Medium";
25606                   size: GENLIST_FONT_32_INC;
25607                   align: 0.0 1.0;
25608                   text_class: "slp_medium";
25609                }
25610             }
25611          }
25612          GENLIST_PART_DISCLIP
25613       }
25614       programs {
25615          // signal: elm,state,%s,active
25616          //   a "check" item named %s went active
25617          // signal: elm,state,%s,passive
25618          //   a "check" item named %s went passive
25619          // default is passive
25620          /*program { name: "go_active";
25621             signal: "elm,state,selected";
25622             source: "elm";
25623             action: STATE_SET "selected" 0.0;
25624             target: "elm.text";
25625             target: "elm.text.sub";
25626          }
25627          program { name: "go_passive";
25628             signal: "elm,state,unselected";
25629             source: "elm";
25630             action: STATE_SET "default" 0.0;
25631             target: "elm.text";
25632             target: "elm.text.sub";
25633             transition: LINEAR 0.1;
25634          }*/
25635          program { name: "go_disabled";
25636             signal: "elm,state,disabled";
25637             source: "elm";
25638             action: STATE_SET "disabled" 0.0;
25639             target: "disclip";
25640          }
25641          program { name: "go_enabled";
25642             signal: "elm,state,enabled";
25643             source: "elm";
25644             action: STATE_SET "default" 0.0;
25645             target: "disclip";
25646          }
25647       }
25648   }
25649
25650 ////////////////////////////////////////////////////////
25651 // Check that belows are used
25652    group { name: "elm/genlist/item/1icon/with_no_line/default";
25653       alias: "elm/genlist/item_odd/1icon/with_no_line/default";
25654       alias: "elm/genlist/item_compress/1icon/with_no_line/default";
25655       alias: "elm/genlist/item_compress_odd/1icon/with_no_line/default";
25656       data.item: "stacking" "above";
25657       data.item: "selectraise" "on";
25658       data.item: "contents" "elm.icon";
25659       parts {
25660          part { name: "base";
25661             type: RECT;
25662             repeat_events: 1;
25663             scale: 1;
25664             description { state: "default" 0.0;
25665                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
25666             }
25667          }
25668          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25669          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25670          part { name: "elm.icon";
25671             clip_to: "disclip";
25672             type: SWALLOW;
25673             description { state: "default" 0.0;
25674                rel1 {
25675                   relative: 1.0 0.0;
25676                   to_x: "elm.padding.left";
25677                }
25678                rel2 {
25679                   relative: 0.0 1.0;
25680                   to_x: "elm.padding.right";
25681                }
25682             }
25683          }
25684          GENLIST_PART_DISCLIP
25685       }
25686       programs {
25687          // signal: elm,state,%s,active
25688          //   a "check" item named %s went active
25689          // signal: elm,state,%s,passive
25690          //   a "check" item named %s went passive
25691          // default is passive
25692          program { name: "go_disabled";
25693             signal: "elm,state,disabled";
25694             source: "elm";
25695             action: STATE_SET "disabled" 0.0;
25696             target: "disclip";
25697          }
25698          program { name: "go_enabled";
25699             signal: "elm,state,enabled";
25700             source: "elm";
25701             action: STATE_SET "default" 0.0;
25702             target: "disclip";
25703          }
25704       }
25705    }
25706    group { name: "elm/genlist/item/1icon/default";
25707       alias: "elm/genlist/item_odd/1icon/default";
25708       alias: "elm/genlist/item_compress/1icon/default";
25709       alias: "elm/genlist/item_compress_odd/1icon/default";
25710       inherit: "elm/genlist/item/1icon/with_no_line/default";
25711       parts {
25712          part { name: "bottom_line";
25713             insert_after: "elm.padding.right";
25714             type: RECT;
25715             mouse_events: 0;
25716             description { state: "default" 0.0;
25717                min: 0 1;
25718                fixed: 0 1;
25719                visible: 1;
25720                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25721                rel1 {
25722                   relative: 0.0 1.0;
25723                   offset: 0 -1;
25724                }
25725             }
25726          }
25727       }
25728    }
25729    group { name: "elm/genlist/item/1text.2/default";
25730       alias: "elm/genlist/item_odd/1text.2/default";
25731       alias: "elm/genlist/item_compress/1text.2/default";
25732       alias: "elm/genlist/item_compress_odd/1text.2/default";
25733       data.item: "stacking" "above";
25734       data.item: "selectraise" "on";
25735       data.item: "texts" "elm.text";
25736       data.item: "flips" "elm.flip.content";
25737       images {
25738          image: "00_list_bar_press_1x80.png" COMP;
25739       }
25740       parts {
25741          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
25742          GENLIST_PART_BG_IMAGE
25743          GENLIST_PART_BOTTOM_LINE
25744          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25745          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25746          part { name: "temp_center_line"; //temporary
25747             clip_to: "disclip";
25748             type: RECT;
25749             mouse_events: 0;
25750             scale: 1;
25751             description { state: "default" 0.0;
25752                rel1 {
25753                   relative: 0.0 0.5;
25754                   to: "base";
25755                }
25756                rel2 {
25757                   relative: 1.0 0.5;
25758                   to: "base";
25759                }
25760             }
25761          }
25762          part { name: "elm.text";
25763             clip_to: "disclip";
25764             type: TEXTBLOCK;
25765             mouse_events: 0;
25766             scale: 1;
25767             multiline: 0;
25768             description { state: "default" 0.0;
25769                fixed: 1 1;
25770                rel1 {
25771                   relative: 1.0 0.5;
25772                   to_x: "elm.padding.left";
25773                   to_y: "temp_center_line";
25774                }
25775                rel2 {
25776                   relative: 0.0 0.5;
25777                   to_x: "elm.padding.right";
25778                   to_y: "temp_center_line";
25779                }
25780                align: 0.0 0.5;
25781                text {
25782                   style: "genlist_style_list_main_text_unread";
25783                   min: 0 1;
25784                   align: 0.0 0.5;
25785                }
25786             }
25787             description { state: "selected" 0.0;
25788                inherit: "default" 0.0;
25789                text.style: "genlist_style_list_main_text_focus";
25790             }
25791             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
25792             GENLIST_DESCRIPTION_FLIP_ENABLED
25793          }
25794          GENLIST_PART_FLIP
25795          GENLIST_PART_DISCLIP
25796       }
25797       programs {
25798          // signal: elm,state,%s,active
25799          //   a "check" item named %s went active
25800          // signal: elm,state,%s,passive
25801          //   a "check" item named %s went passive
25802          // default is passive
25803          program { name: "go_active";
25804             signal: "elm,state,selected";
25805             source: "elm";
25806             action: STATE_SET "selected" 0.0;
25807             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
25808             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
25809          }
25810          program { name: "go_passive";
25811             signal: "elm,state,unselected";
25812             source: "elm";
25813             action: STATE_SET "default" 0.0;
25814             target: "bg_image";
25815             target: "elm.text";
25816             transition: LINEAR 0.1;
25817          }
25818          program { name: "go_disabled";
25819             signal: "elm,state,disabled";
25820             source: "elm";
25821             action: STATE_SET "disabled" 0.0;
25822             target: "disclip";
25823          }
25824          program { name: "go_enabled";
25825             signal: "elm,state,enabled";
25826             source: "elm";
25827             action: STATE_SET "default" 0.0;
25828             target: "disclip";
25829          }
25830          //GENLIST_PROGRAM_FLIP_1TEXT
25831          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
25832       }
25833    }
25834
25835 // 3.1.17
25836    group { name: "elm/genlist/item/1text.2icon.4/default";
25837       alias: "elm/genlist/item_odd/1text.2icon.4/default";
25838       alias: "elm/genlist/item_compress/1text.2icon.4/default";
25839       alias: "elm/genlist/item_compress_odd/1text.2icon.4/default";
25840       data.item: "stacking" "above";
25841       data.item: "selectraise" "on";
25842       data.item: "texts" "elm.text";
25843       data.item: "contents" "elm.icon.1 elm.icon.2";
25844       data.item: "flips" "elm.flip.content";
25845       images {
25846          image: "00_list_bar_press_1x80.png" COMP;
25847       }
25848       parts {
25849          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
25850          GENLIST_PART_BG_IMAGE
25851          GENLIST_PART_BOTTOM_LINE
25852          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25853          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25854          part { name: "elm.icon.1";
25855             clip_to: "disclip";
25856             type: SWALLOW;
25857             scale: 1;
25858             description { state: "default" 0.0;
25859                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
25860                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
25861                fixed: 1 1;
25862                rel1 {
25863                   relative: 1.0 0.0;
25864                   to_x: "elm.padding.left";
25865                }
25866                rel2.to_x: "elm.padding.left";
25867                align: 0.0 0.5;
25868             }
25869             GENLIST_DESCRIPTION_FLIP_ENABLED
25870          }
25871          part { name: "elm.padding.icon1.right";
25872             clip_to: "disclip";
25873             type: RECT;
25874             scale: 1;
25875             description { state: "default" 0.0;
25876                min: GENLIST_PADDING_16_INC 0;
25877                fixed: 1 0;
25878                rel1 {
25879                   relative: 1.0 0.0;
25880                   to_x: "elm.icon.1";
25881                }
25882                rel2.to_x: "elm.icon.1";
25883                visible: 0;
25884             }
25885          }
25886          part { name: "elm.icon.2";
25887             clip_to: "disclip";
25888             type: SWALLOW;
25889             scale: 1;
25890             description { state: "default" 0.0;
25891                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
25892                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
25893                fixed: 1 1;
25894                rel1 {
25895                   relative: 0.0 0.0;
25896                   to_x: "elm.padding.right";
25897                }
25898                rel2 {
25899                   relative: 0.0 1.0;
25900                   to_x: "elm.padding.right";
25901                }
25902                align: 1.0 0.5;
25903             }
25904             GENLIST_DESCRIPTION_FLIP_ENABLED
25905          }
25906          part { name: "elm.padding.icon2.left";
25907             clip_to: "disclip";
25908             type: RECT;
25909             scale: 1;
25910             description { state: "default" 0.0;
25911                min: GENLIST_PADDING_16_INC 0;
25912                fixed: 1 0;
25913                rel1.to_x: "elm.icon.2";
25914                rel2 {
25915                   relative: 0.0 1.0;
25916                   to_x: "elm.icon.2";
25917                }
25918                align: 1.0 0.0;
25919                visible: 0;
25920             }
25921          }
25922          part { name: "elm.text";
25923             clip_to: "disclip";
25924             type: TEXT;
25925             mouse_events: 0;
25926             scale: 1;
25927             description { state: "default" 0.0;
25928                rel1 {
25929                   relative: 1.0 0.0;
25930                   to_x: "elm.padding.icon1.right";
25931                }
25932                rel2 {
25933                   relative: 0.0 1.0;
25934                   to_x: "elm.padding.icon2.left";
25935                }
25936                align: 0.0 0.5;
25937                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
25938                text {
25939                   font: "SLP:style=Roman";
25940                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
25941                   min: 0 1;
25942                   align: 0.0 0.5;
25943                   text_class: "list_item";
25944                }
25945             }
25946             description { state: "selected" 0.0;
25947                inherit: "default" 0.0;
25948                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
25949             }
25950             GENLIST_DESCRIPTION_FLIP_ENABLED
25951          }
25952          GENLIST_PART_FLIP
25953          GENLIST_PART_DISCLIP
25954       }
25955       programs {
25956          program { name: "go_active";
25957             signal: "elm,state,selected";
25958             source: "elm";
25959             action: STATE_SET "selected" 0.0;
25960             target: "bg_image";
25961             target: "elm.text";
25962             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
25963          }
25964          program { name: "go_passive";
25965             signal: "elm,state,unselected";
25966             source: "elm";
25967             action: STATE_SET "default" 0.0;
25968             target: "bg_image";
25969             target: "elm.text";
25970             transition: LINEAR 0.1;
25971          }
25972          program { name: "go_disabled";
25973             signal: "elm,state,disabled";
25974             source: "elm";
25975             action: STATE_SET "disabled" 0.0;
25976             target: "disclip";
25977          }
25978          program { name: "go_enabled";
25979             signal: "elm,state,enabled";
25980             source: "elm";
25981             action: STATE_SET "default" 0.0;
25982             target: "disclip";
25983          }
25984          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
25985          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
25986       }
25987    }
25988