74c2e22519edc9bf3e7d26f4ef7513a556f9698c
[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 // 10.1 Help_dialogue group
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( GENLIST_PADDING_22_INC )
11152          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
11153          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
11154          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_32_INC )
11155          part { name: "elm.text.1";
11156             clip_to: "disclip";
11157             type: TEXTBLOCK;
11158             mouse_events: 0;
11159             scale: 1;
11160             description { state: "default" 0.0;
11161                rel1 {
11162                   relative: 1.0 1.0;
11163                   to_x: "elm.padding.left";
11164                   to_y: "elm.padding.top";
11165                }
11166                rel2 {
11167                   relative: 0.0 0.0;
11168                   to_x: "elm.padding.right";
11169                   to_y: "elm.padding.bottom";
11170                }
11171                text {
11172                   style: "genlist_style_dialogue_group_help_text";
11173                   min: 0 1;
11174                   align: 0.0 0.5;
11175                }
11176             }
11177          }
11178          GENLIST_PART_DISCLIP
11179       }
11180       programs {
11181          program { name: "go_disabled";
11182             signal: "elm,state,disabled";
11183             source: "elm";
11184             action: STATE_SET "disabled" 0.0;
11185             target: "disclip";
11186          }
11187          program { name: "go_enabled";
11188             signal: "elm,state,enabled";
11189             source: "elm";
11190             action: STATE_SET "default" 0.0;
11191             target: "disclip";
11192          }
11193       }
11194    }
11195
11196 // 3.4.1
11197    group { name: "elm/genlist/item_compress/multiline/2text/default";
11198       alias: "elm/genlist/item_compress_odd/multiline/2text/default";
11199       alias: "elm/genlist/item_compress/multiline.2text/default";
11200       alias: "elm/genlist/item_compress_odd/multiline.2text/default";
11201       data.item: "stacking" "above";
11202       data.item: "selectraise" "on";
11203       data.item: "texts" "elm.text.1 elm.text.2";
11204       parts {
11205          part { name: "base";
11206             type: RECT;
11207             repeat_events: 1;
11208             description { state: "default" 0.0;
11209                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
11210             }
11211          }
11212          GENLIST_PART_BG_IMAGE
11213          GENLIST_PART_BOTTOM_LINE
11214          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11215          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
11216          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11217          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11218          part { name: "elm.text.1";
11219             clip_to: "disclip";
11220             type: TEXT;
11221             mouse_events: 0;
11222             scale: 1;
11223             description { state: "default" 0.0;
11224                min: 0 GENLIST_SIZE_61_INC;
11225                fixed: 0 1;
11226                rel1 {
11227                   relative: 1.0 1.0;
11228                   to_x: "elm.padding.left";
11229                   to_y: "elm.padding.top";
11230                }
11231                rel2 {
11232                   relative: 0.0 1.0;
11233                   to_x: "elm.padding.right";
11234                   to_y: "elm.padding.top";
11235                }
11236                align: 0.0 0.0;
11237                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
11238                text {
11239                   font: "SLP:style=Roman";
11240                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
11241                   min: 0 1;
11242                   align: 0.0 0.5;
11243                   text_class: "list_item";
11244                }
11245             }
11246             description { state: "selected" 0.0;
11247                inherit: "default" 0.0;
11248                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11249             }
11250          }
11251          part { name: "elm.text.2";
11252             clip_to: "disclip";
11253             type: TEXTBLOCK;
11254             mouse_events: 0;
11255             scale: 1;
11256             description { state: "default" 0.0;
11257                rel1 {
11258                   relative: 1.0 1.0;
11259                   to_x: "elm.padding.left";
11260                   to_y: "elm.text.1";
11261                }
11262                rel2 {
11263                   relative: 0.0 0.0;
11264                   to_x: "elm.padding.right";
11265                   to_y: "elm.padding.bottom";
11266                }
11267                text {
11268                   style: "genlist_style_flexible_text_sub";
11269                   min: 0 1;
11270                   align: 0.0 0.5;
11271                }
11272             }
11273          }
11274          GENLIST_PART_DISCLIP
11275       }
11276       programs {
11277          // signal: elm,state,%s,active
11278          //   a "check" item named %s went active
11279          // signal: elm,state,%s,passive
11280          //   a "check" item named %s went passive
11281          // default is passive
11282          program { name: "go_active";
11283             signal: "elm,state,selected";
11284             source: "elm";
11285             action: STATE_SET "selected" 0.0;
11286             target: "bg_image";
11287             target: "elm.text.1";
11288             target: "elm.text.2";
11289             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11290          }
11291          program { name: "go_passive";
11292             signal: "elm,state,unselected";
11293             source: "elm";
11294             action: STATE_SET "default" 0.0;
11295             target: "bg_image";
11296             target: "elm.text.1";
11297             target: "elm.text.2";
11298             transition: LINEAR 0.1;
11299          }
11300          program { name: "go_disabled";
11301             signal: "elm,state,disabled";
11302             source: "elm";
11303             action: STATE_SET "disabled" 0.0;
11304             target: "disclip";
11305          }
11306          program { name: "go_enabled";
11307             signal: "elm,state,enabled";
11308             source: "elm";
11309             action: STATE_SET "default" 0.0;
11310             target: "disclip";
11311          }
11312          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11313       }
11314    }
11315
11316 // 3.4.2
11317    group { name: "elm/genlist/item/multiline/3text.2icon/default";
11318       alias: "elm/genlist/item_odd/multiline/3text.2icon/default";
11319       alias: "elm/genlist/item_compress/multiline/3text.2icon/default";
11320       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon/default";
11321       data.item: "stacking" "above";
11322       data.item: "selectraise" "on";
11323       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11324       data.item: "contents" "elm.icon.1 elm.icon.2";
11325       data.item: "flips" "elm.flip.content";
11326       images {
11327          image: "00_list_bar_press_1x80.png" COMP;
11328       }
11329       parts {
11330          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11331          GENLIST_PART_BG_IMAGE
11332          GENLIST_PART_BOTTOM_LINE
11333          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11334          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11335          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11336          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11337          part { name: "elm.icon.2";
11338             clip_to: "disclip";
11339             type: SWALLOW;
11340             scale: 1;
11341             description { state: "default" 0.0;
11342                min: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
11343                max: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
11344                fixed: 1 1;
11345                rel1 {
11346                   relative: 0.0 1.0;
11347                   to_x: "elm.padding.right";
11348                   to_y: "elm.padding.top";
11349                }
11350                rel2 {
11351                   relative: 0.0 0.0;
11352                   to_x: "elm.padding.right";
11353                   to_y: "elm.padding.bottom";
11354                }
11355                align: 1.0 0.5;
11356             }
11357             GENLIST_DESCRIPTION_FLIP_ENABLED
11358          }
11359          part { name: "elm.padding.icon2.left";
11360             clip_to: "disclip";
11361             type: RECT;
11362             scale: 1;
11363             description { state: "default" 0.0;
11364                min: GENLIST_PADDING_16_INC 0;
11365                fixed: 1 0;
11366                rel1.to_x: "elm.icon.2";
11367                rel2 {
11368                   relative: 0.0 1.0;
11369                   to_x: "elm.icon.2";
11370                }
11371                align: 1.0 0.0;
11372                visible: 0;
11373             }
11374          }
11375          part { name: "elm.text.1.rect";
11376             clip_to: "disclip";
11377             type: RECT;
11378             scale: 1;
11379             description { state: "default" 0.0;
11380                min: 0 GENLIST_SIZE_48_INC;
11381                fixed: 0 1;
11382                rel1 {
11383                   relative: 1.0 1.0;
11384                   to_x: "elm.padding.left";
11385                   to_y: "elm.padding.top";
11386                }
11387                rel2 {
11388                   relative: 0.0 1.0;
11389                   to_x: "elm.padding.icon2.left";
11390                   to_y: "elm.padding.top";
11391                }
11392                align: 0.0 0.0;
11393                visible: 0;
11394             }
11395          }
11396          part { name: "elm.text.1";
11397             clip_to: "disclip";
11398             type: TEXT;
11399             mouse_events: 0;
11400             scale: 1;
11401             description { state: "default" 0.0;
11402                fixed: 1 1;
11403                rel1.to: "elm.text.1.rect";
11404                rel2.to: "elm.text.1.rect";
11405                align: 0.0 0.0;
11406                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11407                text {
11408                   font: "SLP:style=Roman";
11409                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
11410                   min: 0 1;
11411                   align: 0.0 0.5;
11412                   text_class: "list_item";
11413                }
11414             }
11415             description { state: "selected" 0.0;
11416                inherit: "default" 0.0;
11417                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11418             }
11419             GENLIST_DESCRIPTION_FLIP_ENABLED
11420          }
11421          part { name: "elm.text.2";
11422             clip_to: "disclip";
11423             type: TEXT;
11424             mouse_events: 0;
11425             scale: 1;
11426             description { state: "default" 0.0;
11427                min: 0 GENLIST_SIZE_48_INC;
11428                fixed: 0 1;
11429                rel1 {
11430                   relative: 1.0 1.0;
11431                   to_x: "elm.padding.left";
11432                   to_y: "elm.text.1.rect";
11433                }
11434                rel2 {
11435                   relative: 0.0 1.0;
11436                   to_x: "elm.padding.icon2.left";
11437                   to_y: "elm.text.1.rect";
11438                }
11439                align: 0.0 0.0;
11440                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11441                text {
11442                   font: "SLP:style=Roman";
11443                   size: GENLIST_FONT_36_INC;
11444                   min: 0 1;
11445                   align: 0.0 0.5;
11446                   text_class: "slp_roman";
11447                }
11448             }
11449             description { state: "selected" 0.0;
11450                inherit: "default" 0.0;
11451                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11452             }
11453             GENLIST_DESCRIPTION_FLIP_ENABLED
11454          }
11455          part { name: "elm.text.3";
11456             clip_to: "disclip";
11457             type: TEXT;
11458             mouse_events: 0;
11459             scale: 1;
11460             description { state: "default" 0.0;
11461                min: 0 GENLIST_SIZE_35_INC;
11462                fixed: 0 1;
11463                rel1 {
11464                   relative: 1.0 0.0;
11465                   to_x: "elm.padding.icon1.right";
11466                   to_y: "elm.padding.bottom";
11467                }
11468                rel2 {
11469                   relative: 0.0 0.0;
11470                   to_x: "elm.padding.icon2.left";
11471                   to_y: "elm.padding.bottom";
11472                }
11473                align: 0.0 1.0;
11474                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
11475                text {
11476                   font: "SLP:style=Medium";
11477                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
11478                   min: 0 1;
11479                   align: 0.0 0.5;
11480                   text_class: "slp_medium";
11481                }
11482             }
11483             description { state: "selected" 0.0;
11484                inherit: "default" 0.0;
11485                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
11486             }
11487             GENLIST_DESCRIPTION_FLIP_ENABLED
11488          }
11489          part { name: "elm.icon.1";
11490             clip_to: "disclip";
11491             type: SWALLOW;
11492             scale: 1;
11493             description { state: "default" 0.0;
11494                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11495                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11496                fixed: 1 1;
11497                rel1 {
11498                   relative: 1.0 1.0;
11499                   to_x: "elm.padding.left";
11500                   to_y: "elm.text.2";
11501                }
11502                rel2 {
11503                   relative: 1.0 0.0;
11504                   to_x: "elm.padding.left";
11505                   to_y: "elm.padding.bottom";
11506                }
11507                align: 0.0 0.5;
11508             }
11509             GENLIST_DESCRIPTION_FLIP_ENABLED
11510          }
11511          part { name: "elm.padding.icon1.right";
11512             clip_to: "disclip";
11513             type: RECT;
11514             scale: 1;
11515             description { state: "default" 0.0;
11516                min: GENLIST_PADDING_16_INC 0;
11517                fixed: 1 0;
11518                rel1 {
11519                   relative: 1.0 0.0;
11520                   to_x: "elm.icon.1";
11521                }
11522                rel2.to_x: "elm.icon.1";
11523                align: 0.0 0.0;
11524                visible: 0;
11525             }
11526          }
11527          GENLIST_PART_FLIP
11528          GENLIST_PART_DISCLIP
11529       }
11530       programs {
11531          // signal: elm,state,%s,active
11532          //   a "check" item named %s went active
11533          // signal: elm,state,%s,passive
11534          //   a "check" item named %s went passive
11535          // default is passive
11536          program { name: "go_active";
11537             signal: "elm,state,selected";
11538             source: "elm";
11539             action: STATE_SET "selected" 0.0;
11540             target: "bg_image";
11541             target: "elm.text.1";
11542             target: "elm.text.2";
11543             target: "elm.text.3";
11544             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11545          }
11546          program { name: "go_passive";
11547             signal: "elm,state,unselected";
11548             source: "elm";
11549             action: STATE_SET "default" 0.0;
11550             target: "bg_image";
11551             target: "elm.text.1";
11552             target: "elm.text.2";
11553             target: "elm.text.3";
11554             transition: LINEAR 0.1;
11555          }
11556          program { name: "go_disabled";
11557             signal: "elm,state,disabled";
11558             source: "elm";
11559             action: STATE_SET "disabled" 0.0;
11560             target: "disclip";
11561          }
11562          program { name: "go_enabled";
11563             signal: "elm,state,enabled";
11564             source: "elm";
11565             action: STATE_SET "default" 0.0;
11566             target: "disclip";
11567          }
11568          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
11569          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11570       }
11571    }
11572
11573 // 3.4.2
11574    group { name: "elm/genlist/item/multiline/3text.2icon.2/default";
11575       alias: "elm/genlist/item_odd/multiline/3text.2icon.2/default";
11576       alias: "elm/genlist/item_compress/multiline/3text.2icon.2/default";
11577       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon.2/default";
11578       data.item: "stacking" "above";
11579       data.item: "selectraise" "on";
11580       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11581       data.item: "contents" "elm.icon.1 elm.icon.2";
11582       data.item: "flips" "elm.flip.content";
11583       images {
11584          image: "00_list_bar_press_1x80.png" COMP;
11585       }
11586       parts {
11587          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11588          GENLIST_PART_BG_IMAGE
11589          GENLIST_PART_BOTTOM_LINE
11590          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11591          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11592          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11593          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11594          part { name: "elm.icon.2";
11595             clip_to: "disclip";
11596             type: SWALLOW;
11597             scale: 1;
11598             description { state: "default" 0.0;
11599                min: GENLIST_HEIGHT_164_INC GENLIST_HEIGHT_164_INC;
11600                max: GENLIST_HEIGHT_164_INC GENLIST_HEIGHT_164_INC;
11601                fixed: 1 1;
11602                rel1 {
11603                   relative: 0.0 1.0;
11604                   to_x: "elm.padding.right";
11605                   to_y: "elm.padding.top";
11606                }
11607                rel2 {
11608                   relative: 0.0 0.0;
11609                   to_x: "elm.padding.right";
11610                   to_y: "elm.padding.bottom";
11611                }
11612                align: 1.0 0.5;
11613             }
11614             GENLIST_DESCRIPTION_FLIP_ENABLED
11615          }
11616          part { name: "elm.padding.icon2.left";
11617             clip_to: "disclip";
11618             type: RECT;
11619             scale: 1;
11620             description { state: "default" 0.0;
11621                min: GENLIST_PADDING_16_INC 0;
11622                fixed: 1 0;
11623                rel1.to_x: "elm.icon.2";
11624                rel2 {
11625                   relative: 0.0 1.0;
11626                   to_x: "elm.icon.2";
11627                }
11628                align: 1.0 0.0;
11629                visible: 0;
11630             }
11631          }
11632          part { name: "elm.text.1.rect";
11633             clip_to: "disclip";
11634             type: RECT;
11635             scale: 1;
11636             description { state: "default" 0.0;
11637                min: 0 GENLIST_SIZE_48_INC;
11638                fixed: 0 1;
11639                rel1 {
11640                   relative: 1.0 1.0;
11641                   to_x: "elm.padding.left";
11642                   to_y: "elm.padding.top";
11643                }
11644                rel2 {
11645                   relative: 0.0 1.0;
11646                   to_x: "elm.padding.icon2.left";
11647                   to_y: "elm.padding.top";
11648                }
11649                align: 0.0 0.0;
11650                visible: 0;
11651             }
11652          }
11653          part { name: "elm.text.1";
11654             clip_to: "disclip";
11655             type: TEXT;
11656             mouse_events: 0;
11657             scale: 1;
11658             description { state: "default" 0.0;
11659                fixed: 1 1;
11660                rel1.to: "elm.text.1.rect";
11661                rel2.to: "elm.text.1.rect";
11662                align: 0.0 0.0;
11663                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
11664                text {
11665                   font: "SLP:style=Roman";
11666                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
11667                   min: 0 1;
11668                   align: 0.0 0.5;
11669                   text_class: "list_item";
11670                }
11671             }
11672             description { state: "selected" 0.0;
11673                inherit: "default" 0.0;
11674                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11675             }
11676             GENLIST_DESCRIPTION_FLIP_ENABLED
11677          }
11678          part { name: "elm.text.2";
11679             clip_to: "disclip";
11680             type: TEXT;
11681             mouse_events: 0;
11682             scale: 1;
11683             description { state: "default" 0.0;
11684                min: 0 GENLIST_SIZE_48_INC;
11685                fixed: 0 1;
11686                rel1 {
11687                   relative: 1.0 1.0;
11688                   to_x: "elm.padding.left";
11689                   to_y: "elm.text.1.rect";
11690                }
11691                rel2 {
11692                   relative: 0.0 1.0;
11693                   to_x: "elm.padding.icon2.left";
11694                   to_y: "elm.text.1.rect";
11695                }
11696                align: 0.0 0.0;
11697                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR;
11698                text {
11699                   font: "SLP:style=Roman";
11700                   size: GENLIST_3LINE_MAIN_TEXT_02_SIZE;
11701                   min: 0 1;
11702                   align: 0.0 0.5;
11703                   text_class: "slp_roman";
11704                }
11705             }
11706             description { state: "selected" 0.0;
11707                inherit: "default" 0.0;
11708                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR_FOCUS;
11709             }
11710             GENLIST_DESCRIPTION_FLIP_ENABLED
11711          }
11712          part { name: "elm.text.3";
11713             clip_to: "disclip";
11714             type: TEXT;
11715             mouse_events: 0;
11716             scale: 1;
11717             description { state: "default" 0.0;
11718                min: 0 GENLIST_SIZE_35_INC;
11719                fixed: 0 1;
11720                rel1 {
11721                   relative: 1.0 0.0;
11722                   to_x: "elm.padding.icon1.right";
11723                   to_y: "elm.padding.bottom";
11724                }
11725                rel2 {
11726                   relative: 0.0 0.0;
11727                   to_x: "elm.padding.icon2.left";
11728                   to_y: "elm.padding.bottom";
11729                }
11730                align: 0.0 1.0;
11731                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
11732                text {
11733                   font: "SLP:style=Medium";
11734                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
11735                   min: 0 1;
11736                   align: 0.0 0.5;
11737                   text_class: "slp_medium";
11738                }
11739             }
11740             description { state: "selected" 0.0;
11741                inherit: "default" 0.0;
11742                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
11743             }
11744             GENLIST_DESCRIPTION_FLIP_ENABLED
11745          }
11746          part { name: "elm.icon.1";
11747             clip_to: "disclip";
11748             type: SWALLOW;
11749             scale: 1;
11750             description { state: "default" 0.0;
11751                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11752                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11753                fixed: 1 1;
11754                rel1 {
11755                   relative: 1.0 1.0;
11756                   to_x: "elm.padding.left";
11757                   to_y: "elm.text.2";
11758                }
11759                rel2 {
11760                   relative: 1.0 0.0;
11761                   to_x: "elm.padding.left";
11762                   to_y: "elm.padding.bottom";
11763                }
11764                align: 0.0 0.5;
11765             }
11766             GENLIST_DESCRIPTION_FLIP_ENABLED
11767          }
11768          part { name: "elm.padding.icon1.right";
11769             clip_to: "disclip";
11770             type: RECT;
11771             scale: 1;
11772             description { state: "default" 0.0;
11773                min: GENLIST_PADDING_16_INC 0;
11774                fixed: 1 0;
11775                rel1 {
11776                   relative: 1.0 0.0;
11777                   to_x: "elm.icon.1";
11778                }
11779                rel2.to_x: "elm.icon.1";
11780                align: 0.0 0.0;
11781                visible: 0;
11782             }
11783          }
11784          GENLIST_PART_FLIP
11785          GENLIST_PART_DISCLIP
11786       }
11787       programs {
11788          // signal: elm,state,%s,active
11789          //   a "check" item named %s went active
11790          // signal: elm,state,%s,passive
11791          //   a "check" item named %s went passive
11792          // default is passive
11793          program { name: "go_active";
11794             signal: "elm,state,selected";
11795             source: "elm";
11796             action: STATE_SET "selected" 0.0;
11797             target: "bg_image";
11798             target: "elm.text.1";
11799             target: "elm.text.2";
11800             target: "elm.text.3";
11801             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11802          }
11803          program { name: "go_passive";
11804             signal: "elm,state,unselected";
11805             source: "elm";
11806             action: STATE_SET "default" 0.0;
11807             target: "bg_image";
11808             target: "elm.text.1";
11809             target: "elm.text.2";
11810             target: "elm.text.3";
11811             transition: LINEAR 0.1;
11812          }
11813          program { name: "go_disabled";
11814             signal: "elm,state,disabled";
11815             source: "elm";
11816             action: STATE_SET "disabled" 0.0;
11817             target: "disclip";
11818          }
11819          program { name: "go_enabled";
11820             signal: "elm,state,enabled";
11821             source: "elm";
11822             action: STATE_SET "default" 0.0;
11823             target: "disclip";
11824          }
11825          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
11826          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11827       }
11828    }
11829
11830 // 3.4.3
11831    group { name: "elm/genlist/item/multiline/3text.1icon/default";
11832       alias: "elm/genlist/item_odd/multiline/3text.1icon/default";
11833       alias: "elm/genlist/item_compress/multiline/3text.1icon/default";
11834       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon/default";
11835       data.item: "stacking" "above";
11836       data.item: "selectraise" "on";
11837       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11838       data.item: "contents" "elm.icon";
11839       data.item: "flips" "elm.flip.content";
11840       images {
11841          image: "00_list_bar_press_1x80.png" COMP;
11842       }
11843       parts {
11844          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11845          GENLIST_PART_BG_IMAGE
11846          GENLIST_PART_BOTTOM_LINE
11847          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11848          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11849          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11850          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11851          part { name: "elm.text.1.rect";
11852             clip_to: "disclip";
11853             type: RECT;
11854             scale: 1;
11855             description { state: "default" 0.0;
11856                min: 0 GENLIST_SIZE_48_INC;
11857                fixed: 0 1;
11858                rel1 {
11859                   relative: 1.0 1.0;
11860                   to_x: "elm.padding.left";
11861                   to_y: "elm.padding.top";
11862                }
11863                rel2 {
11864                   relative: 0.0 1.0;
11865                   to_x: "elm.padding.right";
11866                   to_y: "elm.padding.top";
11867                }
11868                align: 0.0 0.0;
11869                visible: 0;
11870             }
11871          }
11872          part { name: "elm.text.1";
11873             clip_to: "disclip";
11874             type: TEXT;
11875             mouse_events: 0;
11876             scale: 1;
11877             description { state: "default" 0.0;
11878                fixed: 1 1;
11879                rel1.to: "elm.text.1.rect";
11880                rel2.to: "elm.text.1.rect";
11881                align: 0.0 0.0;
11882                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11883                text {
11884                   font: "SLP:style=Roman";
11885                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
11886                   min: 0 1;
11887                   align: 0.0 0.5;
11888                   text_class: "list_item";
11889                }
11890             }
11891             description { state: "selected" 0.0;
11892                inherit: "default" 0.0;
11893                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11894             }
11895             GENLIST_DESCRIPTION_FLIP_ENABLED
11896          }
11897          part { name: "elm.text.2";
11898             clip_to: "disclip";
11899             type: TEXT;
11900             mouse_events: 0;
11901             scale: 1;
11902             description { state: "default" 0.0;
11903                min: 0 GENLIST_SIZE_48_INC;
11904                fixed: 0 1;
11905                rel1 {
11906                   relative: 1.0 1.0;
11907                   to_x: "elm.padding.left";
11908                   to_y: "elm.text.1.rect";
11909                }
11910                rel2 {
11911                   relative: 0.0 1.0;
11912                   to_x: "elm.padding.right";
11913                   to_y: "elm.text.1.rect";
11914                }
11915                align: 0.0 0.0;
11916                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
11917                text {
11918                   font: "SLP:style=Roman";
11919                   size: GENLIST_FONT_36_INC;
11920                   min: 0 1;
11921                   align: 0.0 0.5;
11922                   text_class: "slp_roman";
11923                }
11924             }
11925             description { state: "selected" 0.0;
11926                inherit: "default" 0.0;
11927                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
11928             }
11929             GENLIST_DESCRIPTION_FLIP_ENABLED
11930          }
11931          part { name: "elm.text.3";
11932             clip_to: "disclip";
11933             type: TEXT;
11934             mouse_events: 0;
11935             scale: 1;
11936             description { state: "default" 0.0;
11937                min: 0 GENLIST_SIZE_35_INC;
11938                fixed: 0 1;
11939                rel1 {
11940                   relative: 1.0 0.0;
11941                   to_x: "elm.padding.icon.right";
11942                   to_y: "elm.padding.bottom";
11943                }
11944                rel2 {
11945                   relative: 0.0 0.0;
11946                   to_x: "elm.padding.right";
11947                   to_y: "elm.padding.bottom";
11948                }
11949                align: 0.0 1.0;
11950                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
11951                text {
11952                   font: "SLP:style=Medium";
11953                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
11954                   min: 0 1;
11955                   align: 0.0 0.5;
11956                   text_class: "slp_medium";
11957                }
11958             }
11959             description { state: "selected" 0.0;
11960                inherit: "default" 0.0;
11961                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
11962             }
11963             GENLIST_DESCRIPTION_FLIP_ENABLED
11964          }
11965          part { name: "elm.icon";
11966             clip_to: "disclip";
11967             type: SWALLOW;
11968             scale: 1;
11969             description { state: "default" 0.0;
11970                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11971                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11972                fixed: 1 1;
11973                rel1 {
11974                   relative: 1.0 0.0;
11975                   to_x: "elm.padding.left";
11976                   to_y: "elm.text.3";
11977                }
11978                rel2 {
11979                   relative: 1.0 0.0;
11980                   to_x: "elm.padding.left";
11981                   to_y: "elm.padding.bottom";
11982                }
11983                align: 0.0 0.5;
11984             }
11985             GENLIST_DESCRIPTION_FLIP_ENABLED
11986          }
11987          part { name: "elm.padding.icon.right";
11988             clip_to: "disclip";
11989             type: RECT;
11990             scale: 1;
11991             description { state: "default" 0.0;
11992                min: GENLIST_PADDING_16_INC 0;
11993                fixed: 1 0;
11994                rel1 {
11995                   relative: 1.0 0.0;
11996                   to_x: "elm.icon";
11997                }
11998                rel2.to_x: "elm.icon";
11999                align: 0.0 0.0;
12000                visible: 0;
12001             }
12002          }
12003          GENLIST_PART_FLIP
12004          GENLIST_PART_DISCLIP
12005       }
12006       programs {
12007          // signal: elm,state,%s,active
12008          //   a "check" item named %s went active
12009          // signal: elm,state,%s,passive
12010          //   a "check" item named %s went passive
12011          // default is passive
12012          program { name: "go_active";
12013             signal: "elm,state,selected";
12014             source: "elm";
12015             action: STATE_SET "selected" 0.0;
12016             target: "bg_image";
12017             target: "elm.text.1";
12018             target: "elm.text.2";
12019             target: "elm.text.3";
12020             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12021          }
12022          program { name: "go_passive";
12023             signal: "elm,state,unselected";
12024             source: "elm";
12025             action: STATE_SET "default" 0.0;
12026             target: "bg_image";
12027             target: "elm.text.1";
12028             target: "elm.text.2";
12029             target: "elm.text.3";
12030             transition: LINEAR 0.1;
12031          }
12032          program { name: "go_disabled";
12033             signal: "elm,state,disabled";
12034             source: "elm";
12035             action: STATE_SET "disabled" 0.0;
12036             target: "disclip";
12037          }
12038          program { name: "go_enabled";
12039             signal: "elm,state,enabled";
12040             source: "elm";
12041             action: STATE_SET "default" 0.0;
12042             target: "disclip";
12043          }
12044          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
12045          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12046       }
12047    }
12048
12049 // 3.4.3
12050    group { name: "elm/genlist/item/multiline/3text.1icon.2/default";
12051       alias: "elm/genlist/item_odd/multiline/3text.1icon.2/default";
12052       alias: "elm/genlist/item_compress/multiline/3text.1icon.2/default";
12053       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon.2/default";
12054       data.item: "stacking" "above";
12055       data.item: "selectraise" "on";
12056       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
12057       data.item: "contents" "elm.icon";
12058       data.item: "flips" "elm.flip.content";
12059       images {
12060          image: "00_list_bar_press_1x80.png" COMP;
12061       }
12062       parts {
12063          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
12064          GENLIST_PART_BG_IMAGE
12065          GENLIST_PART_BOTTOM_LINE
12066          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
12067          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
12068          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12069          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12070          part { name: "elm.text.1.rect";
12071             clip_to: "disclip";
12072             type: RECT;
12073             scale: 1;
12074             description { state: "default" 0.0;
12075                min: 0 GENLIST_SIZE_48_INC;
12076                fixed: 0 1;
12077                rel1 {
12078                   relative: 1.0 1.0;
12079                   to_x: "elm.padding.left";
12080                   to_y: "elm.padding.top";
12081                }
12082                rel2 {
12083                   relative: 0.0 1.0;
12084                   to_x: "elm.padding.right";
12085                   to_y: "elm.padding.top";
12086                }
12087                align: 0.0 0.0;
12088                visible: 0;
12089             }
12090          }
12091          part { name: "elm.text.1";
12092             clip_to: "disclip";
12093             type: TEXT;
12094             mouse_events: 0;
12095             scale: 1;
12096             description { state: "default" 0.0;
12097                fixed: 1 1;
12098                rel1.to: "elm.text.1.rect";
12099                rel2.to: "elm.text.1.rect";
12100                align: 0.0 0.0;
12101                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
12102                text {
12103                   font: "SLP:style=Roman";
12104                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
12105                   min: 0 1;
12106                   align: 0.0 0.5;
12107                   text_class: "list_item";
12108                }
12109             }
12110             description { state: "selected" 0.0;
12111                inherit: "default" 0.0;
12112                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
12113             }
12114             GENLIST_DESCRIPTION_FLIP_ENABLED
12115          }
12116          part { name: "elm.text.2";
12117             clip_to: "disclip";
12118             type: TEXT;
12119             mouse_events: 0;
12120             scale: 1;
12121             description { state: "default" 0.0;
12122                min: 0 GENLIST_SIZE_48_INC;
12123                fixed: 0 1;
12124                rel1 {
12125                   relative: 1.0 1.0;
12126                   to_x: "elm.padding.left";
12127                   to_y: "elm.text.1.rect";
12128                }
12129                rel2 {
12130                   relative: 0.0 1.0;
12131                   to_x: "elm.padding.right";
12132                   to_y: "elm.text.1.rect";
12133                }
12134                align: 0.0 0.0;
12135                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR;
12136                text {
12137                   font: "SLP:style=Roman";
12138                   size: GENLIST_3LINE_MAIN_TEXT_02_SIZE;
12139                   min: 0 1;
12140                   align: 0.0 0.5;
12141                   text_class: "slp_roman";
12142                }
12143             }
12144             description { state: "selected" 0.0;
12145                inherit: "default" 0.0;
12146                color: GENLIST_3LINE_MAIN_TEXT_02_COLOR_FOCUS;
12147             }
12148             GENLIST_DESCRIPTION_FLIP_ENABLED
12149          }
12150          part { name: "elm.text.3";
12151             clip_to: "disclip";
12152             type: TEXT;
12153             mouse_events: 0;
12154             scale: 1;
12155             description { state: "default" 0.0;
12156                min: 0 GENLIST_SIZE_35_INC;
12157                fixed: 0 1;
12158                rel1 {
12159                   relative: 1.0 0.0;
12160                   to_x: "elm.padding.icon.right";
12161                   to_y: "elm.padding.bottom";
12162                }
12163                rel2 {
12164                   relative: 0.0 0.0;
12165                   to_x: "elm.padding.right";
12166                   to_y: "elm.padding.bottom";
12167                }
12168                align: 0.0 1.0;
12169                color: GENLIST_3LINE_MAIN_TEXT_03_COLOR;
12170                text {
12171                   font: "SLP:style=Medium";
12172                   size: GENLIST_3LINE_MAIN_TEXT_03_SIZE;
12173                   min: 0 1;
12174                   align: 0.0 0.5;
12175                   text_class: "slp_medium";
12176                }
12177             }
12178             description { state: "selected" 0.0;
12179                inherit: "default" 0.0;
12180                color: GENLIST_3LINE_MAIN_TEXT_03_FOCUS_COLOR;
12181             }
12182             GENLIST_DESCRIPTION_FLIP_ENABLED
12183          }
12184          part { name: "elm.icon";
12185             clip_to: "disclip";
12186             type: SWALLOW;
12187             scale: 1;
12188             description { state: "default" 0.0;
12189                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12190                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12191                fixed: 1 1;
12192                rel1 {
12193                   relative: 1.0 0.0;
12194                   to_x: "elm.padding.left";
12195                   to_y: "elm.text.3";
12196                }
12197                rel2 {
12198                   relative: 1.0 0.0;
12199                   to_x: "elm.padding.left";
12200                   to_y: "elm.padding.bottom";
12201                }
12202                align: 0.0 0.5;
12203             }
12204             GENLIST_DESCRIPTION_FLIP_ENABLED
12205          }
12206          part { name: "elm.padding.icon.right";
12207             clip_to: "disclip";
12208             type: RECT;
12209             scale: 1;
12210             description { state: "default" 0.0;
12211                min: GENLIST_PADDING_16_INC 0;
12212                fixed: 1 0;
12213                rel1 {
12214                   relative: 1.0 0.0;
12215                   to_x: "elm.icon";
12216                }
12217                rel2.to_x: "elm.icon";
12218                align: 0.0 0.0;
12219                visible: 0;
12220             }
12221          }
12222          GENLIST_PART_FLIP
12223          GENLIST_PART_DISCLIP
12224       }
12225       programs {
12226          // signal: elm,state,%s,active
12227          //   a "check" item named %s went active
12228          // signal: elm,state,%s,passive
12229          //   a "check" item named %s went passive
12230          // default is passive
12231          program { name: "go_active";
12232             signal: "elm,state,selected";
12233             source: "elm";
12234             action: STATE_SET "selected" 0.0;
12235             target: "bg_image";
12236             target: "elm.text.1";
12237             target: "elm.text.2";
12238             target: "elm.text.3";
12239             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12240          }
12241          program { name: "go_passive";
12242             signal: "elm,state,unselected";
12243             source: "elm";
12244             action: STATE_SET "default" 0.0;
12245             target: "bg_image";
12246             target: "elm.text.1";
12247             target: "elm.text.2";
12248             target: "elm.text.3";
12249             transition: LINEAR 0.1;
12250          }
12251          program { name: "go_disabled";
12252             signal: "elm,state,disabled";
12253             source: "elm";
12254             action: STATE_SET "disabled" 0.0;
12255             target: "disclip";
12256          }
12257          program { name: "go_enabled";
12258             signal: "elm,state,enabled";
12259             source: "elm";
12260             action: STATE_SET "default" 0.0;
12261             target: "disclip";
12262          }
12263          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
12264          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12265       }
12266    }
12267
12268    // 2.2.3.11
12269    group { name: "elm/genlist/item/multiline/4text.4icon.1/default";
12270       alias: "elm/genlist/item_odd/multiline/4text.4icon.1/default";
12271       alias: "elm/genlist/item_compress/multiline/4text.4icon.1/default";
12272       alias: "elm/genlist/item_compress_odd/multiline/4text.4icon.1/default";
12273       data.item: "stacking" "above";
12274       data.item: "selectraise" "on";
12275       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
12276       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4";
12277       data.item: "flips" "elm.flip.content";
12278       images {
12279          image: "00_list_bar_press_1x80.png" COMP;
12280       }
12281       parts {
12282          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
12283          GENLIST_PART_BG_IMAGE
12284          GENLIST_PART_BOTTOM_LINE
12285          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
12286          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
12287          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12288          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12289
12290          part { name: "elm.icon.1";
12291             clip_to: "disclip";
12292             type: SWALLOW;
12293             scale: 1;
12294             description { state: "default" 0.0;
12295                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12296                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12297                fixed: 1 1;
12298                rel1 {
12299                   relative: 1.0 1.0;
12300                   to_x: "elm.padding.left";
12301                   to_y: "elm.padding.top";
12302                }
12303                rel2 {
12304                   relative: 1.0 0.0;
12305                   to_x: "elm.padding.left";
12306                   to_y: "elm.padding.bottom";
12307                }
12308                align: 0.0 0.5;
12309             }
12310             GENLIST_DESCRIPTION_FLIP_ENABLED
12311          }
12312          part { name: "elm.padding.icon1.right";
12313             clip_to: "disclip";
12314             type: RECT;
12315             scale: 1;
12316             description { state: "default" 0.0;
12317                min: GENLIST_PADDING_16_INC 0;
12318                fixed: 1 0;
12319                rel1 {
12320                   relative: 1.0 0.0;
12321                   to_x: "elm.icon.1";
12322                }
12323                rel2.to_x: "elm.icon.1";
12324                align: 0.0 0.0;
12325                visible: 0;
12326             }
12327          }
12328          part { name: "elm.icon.3";
12329             clip_to: "disclip";
12330             type: SWALLOW;
12331             scale: 1;
12332             description { state: "default" 0.0;
12333                min: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
12334                max: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
12335                fixed: 1 1;
12336                rel1 {
12337                   relative: 0.0 1.0;
12338                   to_x: "elm.padding.right";
12339                   to_y: "elm.padding.top";
12340                }
12341                rel2 {
12342                   relative: 0.0 0.0;
12343                   to_x: "elm.padding.right";
12344                   to_y: "elm.padding.bottom";
12345                }
12346                align: 1.0 0.0;
12347             }
12348             GENLIST_DESCRIPTION_FLIP_ENABLED
12349          }
12350          part { name: "elm.icon.3.left";
12351             clip_to: "disclip";
12352             type: RECT;
12353             scale: 1;
12354             description { state: "default" 0.0;
12355                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12356                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12357                fixed: 1 1;
12358                rel1 {
12359                   relative: 0.0 1.0;
12360                   to_x: "elm.icon.3";
12361                   to_y: "elm.padding.top";
12362                }
12363                rel2 {
12364                   relative: 0.0 0.0;
12365                   to_x: "elm.icon.3";
12366                   to_y: "elm.padding.bottom";
12367                }
12368                align: 1.0 0.0;
12369                visible: 0;
12370             }
12371             GENLIST_DESCRIPTION_FLIP_ENABLED
12372          }
12373          part { name: "elm.icon.4";
12374             clip_to: "disclip";
12375             type: SWALLOW;
12376             scale: 1;
12377             description { state: "default" 0.0;
12378                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12379                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12380                fixed: 1 1;
12381                rel1 {
12382                   relative: 0.0 1.0;
12383                   to_x: "elm.icon.3.left";
12384                   to_y: "elm.padding.top";
12385                }
12386                rel2 {
12387                   relative: 0.0 0.0;
12388                   to_x: "elm.icon.3.left";
12389                   to_y: "elm.text.2";
12390                }
12391                align: 1.0 0.5;
12392             }
12393             GENLIST_DESCRIPTION_FLIP_ENABLED
12394          }
12395          part { name: "elm.icon.4.left";
12396             clip_to: "disclip";
12397             type: RECT;
12398             scale: 1;
12399             description { state: "default" 0.0;
12400                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12401                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12402                fixed: 1 1;
12403                rel1 {
12404                   relative: 0.0 1.0;
12405                   to_x: "elm.icon.4";
12406                   to_y: "elm.padding.top";
12407                }
12408                rel2 {
12409                   relative: 0.0 0.0;
12410                   to_x: "elm.icon.4";
12411                   to_y: "elm.padding.bottom";
12412                }
12413                align: 1.0 0.0;
12414                visible: 0;
12415             }
12416             GENLIST_DESCRIPTION_FLIP_ENABLED
12417          }
12418
12419          part { name: "elm.text.1.rect";
12420             clip_to: "disclip";
12421             type: RECT;
12422             scale: 1;
12423             description { state: "default" 0.0;
12424                min: 0 GENLIST_SIZE_60_INC;
12425                fixed: 0 1;
12426                rel1 {
12427                   relative: 1.0 1.0;
12428                   to_x: "elm.padding.left";
12429                   to_y: "elm.padding.top";
12430                }
12431                rel2 {
12432                   relative: 0.0 1.0;
12433                   to_x: "elm.icon.4.left";
12434                   to_y: "elm.padding.top";
12435                }
12436                align: 0.0 0.0;
12437                visible: 0;
12438             }
12439          }
12440          part { name: "elm.text.1";
12441             clip_to: "disclip";
12442             type: TEXT;
12443             mouse_events: 0;
12444             scale: 1;
12445             description { state: "default" 0.0;
12446                fixed: 1 1;
12447                rel1 {
12448                   relative: 1.0 1.0;
12449                   to_x: "elm.padding.icon1.right";
12450                   to_y: "elm.padding.top";
12451                }
12452                rel2.to: "elm.text.1.rect";
12453                align: 0.0 0.0;
12454                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
12455                text {
12456                   font: "SLP:style=Roman";
12457                   size: GENLIST_3LINE_MAIN_TEXT_01_SIZE;
12458                   min: 0 1;
12459                   align: 0.0 0.5;
12460                   text_class: "list_item";
12461                }
12462             }
12463             description { state: "selected" 0.0;
12464                inherit: "default" 0.0;
12465                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
12466             }
12467             GENLIST_DESCRIPTION_FLIP_ENABLED
12468          }
12469          part { name: "elm.text.1.bottom";
12470             clip_to: "disclip";
12471             type: RECT;
12472             scale: 1;
12473             description { state: "default" 0.0;
12474                min: 0 GENLIST_SIZE_4_INC;
12475                fixed: 1 1;
12476                rel1 {
12477                   relative: 1.0 1.0;
12478                   to_x: "elm.padding.icon1.right";
12479                   to_y: "elm.text.1.rect";
12480                }
12481                rel2 {
12482                   relative: 0.0 1.0;
12483                   to_x: "elm.padding.right";
12484                   to_y: "elm.text.1.rect";
12485                }
12486                align: 0.0 1.0;
12487                visible: 0;
12488             }
12489             GENLIST_DESCRIPTION_FLIP_ENABLED
12490          }
12491          part { name: "elm.text.2";
12492             clip_to: "disclip";
12493             type: TEXT;
12494             mouse_events: 0;
12495             scale: 1;
12496             description { state: "default" 0.0;
12497                min: 0 GENLIST_SIZE_40_INC;
12498                fixed: 0 1;
12499                rel1 {
12500                   relative: 1.0 1.0;
12501                   to_x: "elm.padding.icon1.right";
12502                   to_y: "elm.text.1.bottom";
12503                }
12504                rel2 {
12505                   relative: 0.0 1.0;
12506                   to_x: "elm.padding.right";
12507                   to_y: "elm.text.1.bottom";
12508                }
12509                align: 0.0 0.0;
12510                color: GENLIST_NAME_TEXT_COLOR;
12511                text {
12512                   font: "SLP:style=Medium";
12513                   size: GENLIST_FONT_32_INC;
12514                   min: 0 1;
12515                   align: 0.0 0.5;
12516                   text_class: "slp_medium";
12517                }
12518             }
12519             description { state: "selected" 0.0;
12520                inherit: "default" 0.0;
12521                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
12522             }
12523             GENLIST_DESCRIPTION_FLIP_ENABLED
12524          }
12525          part { name: "elm.text.4";
12526             clip_to: "disclip";
12527             type: TEXT;
12528             mouse_events: 0;
12529             scale: 1;
12530             description { state: "default" 0.0;
12531                min: GENLIST_SIZE_133_INC GENLIST_SIZE_40_INC;
12532                fixed: 1 1;
12533                rel1 {
12534                   relative: 0.0 1.0;
12535                   to_x: "elm.padding.right";
12536                   to_y: "elm.text.2";
12537                }
12538                rel2 {
12539                   relative: 0.0 0.0;
12540                   to_x: "elm.padding.right";
12541                   to_y: "elm.padding.bottom";
12542                }
12543                align: 1.0 0.0;
12544                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12545                text {
12546                   font: "SLP:style=Medium";
12547                   size: GENLIST_FONT_32_INC;
12548                   min: 0 1;
12549                   align: 0.0 0.5;
12550                   text_class: "slp_medium";
12551                }
12552             }
12553             description { state: "selected" 0.0;
12554                inherit: "default" 0.0;
12555                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
12556             }
12557             GENLIST_DESCRIPTION_FLIP_ENABLED
12558          }
12559          part { name: "elm.text.4.left";
12560             clip_to: "disclip";
12561             type: RECT;
12562             scale: 1;
12563             description { state: "default" 0.0;
12564                min: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
12565                max: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
12566                fixed: 1 1;
12567                color: 255 0 255 255;
12568                rel1 {
12569                   relative: 0.0 1.0;
12570                   to_x: "elm.text.4";
12571                   to_y: "elm.text.2";
12572                }
12573                rel2 {
12574                   relative: 0.0 0.0;
12575                   to_x: "elm.text.4";
12576                   to_y: "elm.padding.bottom";
12577                }
12578                align: 1.0 0.0;
12579                visible: 0;
12580             }
12581             GENLIST_DESCRIPTION_FLIP_ENABLED
12582          }
12583          part { name: "elm.text.3";
12584             clip_to: "disclip";
12585             type: TEXT;
12586             mouse_events: 0;
12587             scale: 1;
12588             description { state: "default" 0.0;
12589                min: 0 GENLIST_SIZE_40_INC;
12590                fixed: 0 1;
12591                rel1 {
12592                   relative: 1.0 0.0;
12593                   to_x: "elm.padding.icon1.right";
12594                   to_y: "elm.padding.bottom";
12595                }
12596                rel2 {
12597                   relative: 0.0 0.0;
12598                   to_x: "elm.text.4.left";
12599                   to_y: "elm.padding.bottom";
12600                }
12601                align: 0.0 1.0;
12602                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12603                text {
12604                   font: "SLP:style=Medium";
12605                   size: GENLIST_FONT_32_INC;
12606                   min: 0 1;
12607                   align: 0.0 0.5;
12608                   text_class: "slp_medium";
12609                }
12610             }
12611             description { state: "selected" 0.0;
12612                inherit: "default" 0.0;
12613                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
12614             }
12615             GENLIST_DESCRIPTION_FLIP_ENABLED
12616          }
12617
12618          GENLIST_PART_FLIP
12619          GENLIST_PART_DISCLIP
12620       }
12621       programs {
12622          program { name: "go_active";
12623             signal: "elm,state,selected";
12624             source: "elm";
12625             action: STATE_SET "selected" 0.0;
12626             target: "bg_image";
12627             target: "elm.text.1";
12628             target: "elm.text.2";
12629             target: "elm.text.3";
12630             target: "elm.text.4";
12631          }
12632          program { name: "go_passive";
12633             signal: "elm,state,unselected";
12634             source: "elm";
12635             action: STATE_SET "default" 0.0;
12636             target: "bg_image";
12637             target: "elm.text.1";
12638             target: "elm.text.2";
12639             target: "elm.text.3";
12640             target: "elm.text.4";
12641             transition: LINEAR 0.1;
12642          }
12643          program { name: "go_disabled";
12644             signal: "elm,state,disabled";
12645             source: "elm";
12646             action: STATE_SET "disabled" 0.0;
12647             target: "disclip";
12648          }
12649          program { name: "go_enabled";
12650             signal: "elm,state,enabled";
12651             source: "elm";
12652             action: STATE_SET "default" 0.0;
12653             target: "disclip";
12654          }
12655       }
12656    }
12657
12658    // 2.2.3.12
12659    group { name: "elm/genlist/item/multiline/4text.6icon.8/default";
12660       alias: "elm/genlist/item_odd/multiline/4text.6icon.8/default";
12661       alias: "elm/genlist/item_compress/multiline/4text.6icon.8/default";
12662       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.8/default";
12663       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12664
12665       parts {
12666          part { name: "elm.text.1";
12667             description { state: "default" 0.0;
12668                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
12669             }
12670          }
12671       }
12672    }
12673
12674    // 2.2.3.9
12675    group { name: "elm/genlist/item/multiline/4text.6icon.5/default";
12676       alias: "elm/genlist/item_odd/multiline/4text.6icon.5/default";
12677       alias: "elm/genlist/item_compress/multiline/4text.6icon.5/default";
12678       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.5/default";
12679       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12680       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4 elm.icon.5";
12681
12682       parts {
12683          part { name: "elm.icon.5";
12684             clip_to: "disclip";
12685             type: SWALLOW;
12686             scale: 1;
12687             description { state: "default" 0.0;
12688                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12689                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12690                fixed: 1 1;
12691                rel1 {
12692                   relative: 0.0 1.0;
12693                   to_x: "elm.icon.4.left";
12694                   to_y: "elm.padding.top";
12695                }
12696                rel2 {
12697                   relative: 0.0 0.0;
12698                   to_x: "elm.icon.4.left";
12699                   to_y: "elm.text.2";
12700                }
12701                align: 1.0 0.5;
12702             }
12703             GENLIST_DESCRIPTION_FLIP_ENABLED
12704          }
12705          part { name: "elm.icon.5.left";
12706             clip_to: "disclip";
12707             type: RECT;
12708             scale: 1;
12709             description { state: "default" 0.0;
12710                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12711                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12712                fixed: 1 1;
12713                rel1 {
12714                   relative: 0.0 1.0;
12715                   to_x: "elm.icon.5";
12716                   to_y: "elm.padding.top";
12717                }
12718                rel2 {
12719                   relative: 0.0 0.0;
12720                   to_x: "elm.icon.5";
12721                   to_y: "elm.padding.bottom";
12722                }
12723                align: 1.0 0.0;
12724                visible: 0;
12725             }
12726             GENLIST_DESCRIPTION_FLIP_ENABLED
12727          }
12728          part { name: "elm.text.1.rect";
12729             description { state: "default" 0.0;
12730                rel2.to_x: "elm.icon.5.left";
12731             }
12732          }
12733       }
12734    }
12735
12736    // 2.2.3.10
12737    group { name: "elm/genlist/item/multiline/4text.6icon.6/default";
12738       alias: "elm/genlist/item_odd/multiline/4text.6icon.6/default";
12739       alias: "elm/genlist/item_compress/multiline/4text.6icon.6/default";
12740       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.6/default";
12741       inherit: "elm/genlist/item/multiline/4text.6icon.5/default";
12742
12743       parts {
12744          part { name: "elm.text.1";
12745             description { state: "default" 0.0;
12746                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
12747             }
12748          }
12749       }
12750    }
12751
12752    // 2.2.3.7
12753    group { name: "elm/genlist/item/multiline/4text.6icon.3/default";
12754       alias: "elm/genlist/item_odd/multiline/4text.6icon.3/default";
12755       alias: "elm/genlist/item_compress/multiline/4text.6icon.3/default";
12756       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.3/default";
12757       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12758       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
12759
12760       parts {
12761           part { name: "elm.icon.2";
12762             clip_to: "disclip";
12763             type: SWALLOW;
12764             scale: 1;
12765             description { state: "default" 0.0;
12766                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12767                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12768                fixed: 1 1;
12769                rel1 {
12770                   relative: 1.0 1.0;
12771                   to_x: "elm.padding.icon1.right";
12772                   to_y: "elm.text.2";
12773                }
12774                rel2 {
12775                   relative: 1.0 0.0;
12776                   to_x: "elm.padding.icon1.right";
12777                   to_y: "elm.padding.bottom";
12778                }
12779                align: 0.0 0.5;
12780             }
12781             GENLIST_DESCRIPTION_FLIP_ENABLED
12782          }
12783          part { name: "elm.padding.icon2.right";
12784             clip_to: "disclip";
12785             type: RECT;
12786             scale: 1;
12787             description { state: "default" 0.0;
12788                min: GENLIST_SIZE_16_INC 0;
12789                fixed: 1 0;
12790                rel1 {
12791                   relative: 1.0 0.0;
12792                   to_x: "elm.icon.2";
12793                }
12794                rel2.to_x: "elm.icon.2";
12795                align: 0.0 0.0;
12796                visible: 0;
12797             }
12798          }
12799          part { name: "elm.text.3";
12800             clip_to: "disclip";
12801             type: TEXT;
12802             mouse_events: 0;
12803             scale: 1;
12804             description { state: "default" 0.0;
12805                min: 0 GENLIST_SIZE_40_INC;
12806                fixed: 0 1;
12807                rel1 {
12808                   relative: 1.0 0.0;
12809                   to_x: "elm.padding.icon2.right";
12810                   to_y: "elm.padding.bottom";
12811                }
12812                rel2 {
12813                   relative: 0.0 0.0;
12814                   to_x: "elm.text.4.left";
12815                   to_y: "elm.padding.bottom";
12816                }
12817                align: 0.0 1.0;
12818                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12819                text {
12820                   font: "SLP:style=Medium";
12821                   size: GENLIST_FONT_32_INC;
12822                   min: 0 1;
12823                   align: 0.0 0.5;
12824                   text_class: "slp_medium";
12825                }
12826             }
12827             description { state: "selected" 0.0;
12828                inherit: "default" 0.0;
12829                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
12830             }
12831             GENLIST_DESCRIPTION_FLIP_ENABLED
12832          }
12833       }
12834    }
12835
12836    // 2.2.3.8
12837    group { name: "elm/genlist/item/multiline/4text.6icon.4/default";
12838       alias: "elm/genlist/item_odd/multiline/4text.6icon.4/default";
12839       alias: "elm/genlist/item_compress/multiline/4text.6icon.4/default";
12840       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.4/default";
12841       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
12842
12843       parts {
12844          part { name: "elm.text.1";
12845             description { state: "default" 0.0;
12846                color: GENLIST_3LINE_MAIN_TEXT_01_READ_COLOR;
12847             }
12848          }
12849       }
12850    }
12851
12852    // 2.2.3.5
12853    group { name: "elm/genlist/item/multiline/4text.6icon.1/default";
12854       alias: "elm/genlist/item_odd/multiline/4text.6icon.1/default";
12855       alias: "elm/genlist/item_compress/multiline/4text.6icon.1/default";
12856       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.1/default";
12857       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
12858       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.icon.5";
12859
12860       parts {
12861          part { name: "elm.icon.5";
12862             clip_to: "disclip";
12863             type: SWALLOW;
12864             scale: 1;
12865             description { state: "default" 0.0;
12866                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12867                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12868                fixed: 1 1;
12869                rel1 {
12870                   relative: 0.0 1.0;
12871                   to_x: "elm.icon.4.left";
12872                   to_y: "elm.padding.top";
12873                }
12874                rel2 {
12875                   relative: 0.0 0.0;
12876                   to_x: "elm.icon.4.left";
12877                   to_y: "elm.text.2";
12878                }
12879                align: 1.0 0.5;
12880             }
12881             GENLIST_DESCRIPTION_FLIP_ENABLED
12882          }
12883          part { name: "elm.icon.5.left";
12884             clip_to: "disclip";
12885             type: RECT;
12886             scale: 1;
12887             description { state: "default" 0.0;
12888                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12889                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12890                fixed: 1 1;
12891                rel1 {
12892                   relative: 0.0 1.0;
12893                   to_x: "elm.icon.5";
12894                   to_y: "elm.padding.top";
12895                }
12896                rel2 {
12897                   relative: 0.0 0.0;
12898                   to_x: "elm.icon.5";
12899                   to_y: "elm.padding.bottom";
12900                }
12901                align: 1.0 0.0;
12902                visible: 0;
12903             }
12904             GENLIST_DESCRIPTION_FLIP_ENABLED
12905          }
12906          part { name: "elm.text.1.rect";
12907             description { state: "default" 0.0;
12908                rel2 {
12909                   to_x: "elm.icon.5.left";
12910                }
12911             }
12912          }
12913       }
12914    }
12915
12916    // 2.2.3.6
12917    group { name: "elm/genlist/item/multiline/4text.6icon.2/default";
12918       alias: "elm/genlist/item_odd/multiline/4text.6icon.2/default";
12919       alias: "elm/genlist/item_compress/multiline/4text.6icon.2/default";
12920       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.2/default";
12921       inherit: "elm/genlist/item/multiline/4text.6icon.1/default";
12922
12923       parts {
12924          part { name: "elm.text.1";
12925             description { state: "default" 0.0;
12926                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
12927             }
12928          }
12929       }
12930    }
12931
12932    // 2.2.3.13
12933    group { name: "elm/genlist/item/multiline/3text.4icon.2/default";
12934       alias: "elm/genlist/item_odd/multiline/3text.4icon.2/default";
12935       alias: "elm/genlist/item_compress/multiline/3text.4icon.2/default";
12936       alias: "elm/genlist/item_compress_odd/multiline/3text.4icon.2/default";
12937       data.item: "stacking" "above";
12938       data.item: "selectraise" "on";
12939       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
12940       data.item: "contents" "elm.icon.1 elm.icon.4";
12941       data.item: "flips" "elm.flip.content";
12942       images {
12943          image: "00_list_bar_press_1x80.png" COMP;
12944       }
12945       parts {
12946          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
12947          GENLIST_PART_BG_IMAGE
12948          GENLIST_PART_BOTTOM_LINE
12949          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
12950          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
12951          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12952          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12953
12954          part { name: "elm.icon.1";
12955             clip_to: "disclip";
12956             type: SWALLOW;
12957             scale: 1;
12958             description { state: "default" 0.0;
12959                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12960                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12961                fixed: 1 1;
12962                rel1 {
12963                   relative: 1.0 1.0;
12964                   to_x: "elm.padding.left";
12965                   to_y: "elm.padding.top";
12966                }
12967                rel2 {
12968                   relative: 1.0 0.0;
12969                   to_x: "elm.padding.left";
12970                   to_y: "elm.padding.bottom";
12971                }
12972                align: 0.0 0.5;
12973             }
12974             GENLIST_DESCRIPTION_FLIP_ENABLED
12975          }
12976          part { name: "elm.padding.icon1.right";
12977             clip_to: "disclip";
12978             type: RECT;
12979             scale: 1;
12980             description { state: "default" 0.0;
12981                min: GENLIST_PADDING_16_INC 0;
12982                fixed: 1 0;
12983                rel1 {
12984                   relative: 1.0 0.0;
12985                   to_x: "elm.icon.1";
12986                }
12987                rel2.to_x: "elm.icon.1";
12988                align: 0.0 0.0;
12989                visible: 0;
12990             }
12991          }
12992          part { name: "elm.icon.4";
12993             clip_to: "disclip";
12994             type: SWALLOW;
12995             scale: 1;
12996             description { state: "default" 0.0;
12997                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12998                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12999                fixed: 1 1;
13000                rel1 {
13001                   relative: 0.0 1.0;
13002                   to_x: "elm.padding.right";
13003                   to_y: "elm.padding.top";
13004                }
13005                rel2 {
13006                   relative: 0.0 0.0;
13007                   to_x: "elm.padding.right";
13008                   to_y: "elm.text.2";
13009                }
13010                align: 1.0 0.5;
13011             }
13012             GENLIST_DESCRIPTION_FLIP_ENABLED
13013          }
13014          part { name: "elm.icon.4.left";
13015             clip_to: "disclip";
13016             type: RECT;
13017             scale: 1;
13018             description { state: "default" 0.0;
13019                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13020                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13021                fixed: 1 1;
13022                rel1 {
13023                   relative: 0.0 1.0;
13024                   to_x: "elm.icon.4";
13025                   to_y: "elm.padding.top";
13026                }
13027                rel2 {
13028                   relative: 0.0 0.0;
13029                   to_x: "elm.icon.4";
13030                   to_y: "elm.padding.bottom";
13031                }
13032                align: 1.0 0.0;
13033                visible: 0;
13034             }
13035             GENLIST_DESCRIPTION_FLIP_ENABLED
13036          }
13037          part { name: "elm.icon.2";
13038             clip_to: "disclip";
13039             type: SWALLOW;
13040             scale: 1;
13041             description { state: "default" 0.0;
13042                fixed: 1 1;
13043                min: GENLIST_SIZE_88_INC GENLIST_SIZE_74_INC;
13044                rel1 {
13045                   relative: 0.0 1.0;
13046                   to_x: "elm.padding.right";
13047                   to_y: "elm.text.1.bottom";
13048                }
13049                rel2 {
13050                   relative: 0.0 0.0;
13051                   to_x: "elm.padding.right";
13052                   to_y: "elm.padding.bottom";
13053                }
13054                align: 1.0 0.5;
13055             }
13056             GENLIST_DESCRIPTION_FLIP_ENABLED
13057          }
13058          part { name: "elm.padding.icon2.left";
13059             clip_to: "disclip";
13060             type: RECT;
13061             scale: 1;
13062             description { state: "default" 0.0;
13063                min: GENLIST_PADDING_16_INC 0;
13064                fixed: 1 0;
13065                rel1.to_x: "elm.icon.2";
13066                rel2 {
13067                   relative: 0.0 1.0;
13068                   to_x: "elm.icon.2";
13069                }
13070                align: 1.0 0.0;
13071                visible: 0;
13072             }
13073          }
13074          part { name: "elm.text.1.rect";
13075             clip_to: "disclip";
13076             type: RECT;
13077             scale: 1;
13078             description { state: "default" 0.0;
13079                min: 0 GENLIST_SIZE_60_INC;
13080                fixed: 0 1;
13081                rel1 {
13082                   relative: 1.0 1.0;
13083                   to_x: "elm.padding.left";
13084                   to_y: "elm.padding.top";
13085                }
13086                rel2 {
13087                   relative: 0.0 1.0;
13088                   to_x: "elm.icon.4.left";
13089                   to_y: "elm.padding.top";
13090                }
13091                align: 0.0 0.0;
13092                visible: 0;
13093             }
13094          }
13095          part { name: "elm.text.1";
13096             clip_to: "disclip";
13097             type: TEXT;
13098             mouse_events: 0;
13099             scale: 1;
13100             description { state: "default" 0.0;
13101                fixed: 1 1;
13102                rel1 {
13103                   relative: 1.0 1.0;
13104                   to_x: "elm.padding.icon1.right";
13105                   to_y: "elm.padding.top";
13106                }
13107                rel2.to: "elm.text.1.rect";
13108                align: 0.0 0.0;
13109                color: GENLIST_3LINE_MAIN_TEXT_01_UNREAD_COLOR;
13110                text {
13111                   font: "SLP:style=Roman";
13112                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13113                   min: 0 1;
13114                   align: 0.0 0.5;
13115                   text_class: "list_item";
13116                }
13117             }
13118             description { state: "selected" 0.0;
13119                inherit: "default" 0.0;
13120                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
13121             }
13122             GENLIST_DESCRIPTION_FLIP_ENABLED
13123          }
13124          part { name: "elm.text.1.bottom";
13125             clip_to: "disclip";
13126             type: RECT;
13127             scale: 1;
13128             description { state: "default" 0.0;
13129                min: 0 GENLIST_SIZE_4_INC;
13130                fixed: 1 1;
13131                rel1 {
13132                   relative: 1.0 1.0;
13133                   to_x: "elm.padding.icon1.right";
13134                   to_y: "elm.text.1.rect";
13135                }
13136                rel2 {
13137                   relative: 0.0 1.0;
13138                   to_x: "elm.padding.right";
13139                   to_y: "elm.text.1.rect";
13140                }
13141                align: 0.0 1.0;
13142                visible: 0;
13143             }
13144             GENLIST_DESCRIPTION_FLIP_ENABLED
13145          }
13146          part { name: "elm.text.2";
13147             clip_to: "disclip";
13148             type: TEXT;
13149             mouse_events: 0;
13150             scale: 1;
13151             description { state: "default" 0.0;
13152                min: 0 GENLIST_SIZE_40_INC;
13153                fixed: 0 1;
13154                rel1 {
13155                   relative: 1.0 1.0;
13156                   to_x: "elm.padding.icon1.right";
13157                   to_y: "elm.text.1.bottom";
13158                }
13159                rel2 {
13160                   relative: 0.0 1.0;
13161                   to_x: "elm.padding.icon2.left";
13162                   to_y: "elm.text.1.bottom";
13163                }
13164                align: 0.0 0.0;
13165                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
13166                text {
13167                   font: "SLP:style=Medium";
13168                   size: GENLIST_FONT_32_INC;
13169                   min: 0 1;
13170                   align: 0.0 0.5;
13171                   text_class: "slp_medium";
13172                }
13173             }
13174             description { state: "selected" 0.0;
13175                inherit: "default" 0.0;
13176                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
13177             }
13178             GENLIST_DESCRIPTION_FLIP_ENABLED
13179          }
13180          part { name: "elm.text.3";
13181             clip_to: "disclip";
13182             type: TEXT;
13183             mouse_events: 0;
13184             scale: 1;
13185             description { state: "default" 0.0;
13186                min: 0 GENLIST_SIZE_40_INC;
13187                fixed: 0 1;
13188                rel1 {
13189                   relative: 1.0 0.0;
13190                   to_x: "elm.padding.icon1.right";
13191                   to_y: "elm.padding.bottom";
13192                }
13193                rel2 {
13194                   relative: 0.0 0.0;
13195                   to_x: "elm.padding.icon2.left";
13196                   to_y: "elm.padding.bottom";
13197                }
13198                align: 0.0 1.0;
13199                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
13200                text {
13201                   font: "SLP:style=Medium";
13202                   size: GENLIST_FONT_32_INC;
13203                   min: 0 1;
13204                   align: 0.0 0.5;
13205                   text_class: "slp_medium";
13206                }
13207             }
13208             description { state: "selected" 0.0;
13209                inherit: "default" 0.0;
13210                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
13211             }
13212             GENLIST_DESCRIPTION_FLIP_ENABLED
13213          }
13214
13215          GENLIST_PART_FLIP
13216          GENLIST_PART_DISCLIP
13217       }
13218       programs {
13219          // signal: elm,state,%s,active
13220          //   a "check" item named %s went active
13221          // signal: elm,state,%s,passive
13222          //   a "check" item named %s went passive
13223          // default is passive
13224          program { name: "go_active";
13225             signal: "elm,state,selected";
13226             source: "elm";
13227             action: STATE_SET "selected" 0.0;
13228             target: "bg_image";
13229             target: "elm.text.1";
13230             target: "elm.text.2";
13231             target: "elm.text.3";
13232          }
13233          program { name: "go_passive";
13234             signal: "elm,state,unselected";
13235             source: "elm";
13236             action: STATE_SET "default" 0.0;
13237             target: "bg_image";
13238             target: "elm.text.1";
13239             target: "elm.text.2";
13240             target: "elm.text.3";
13241             transition: LINEAR 0.1;
13242          }
13243          program { name: "go_disabled";
13244             signal: "elm,state,disabled";
13245             source: "elm";
13246             action: STATE_SET "disabled" 0.0;
13247             target: "disclip";
13248          }
13249          program { name: "go_enabled";
13250             signal: "elm,state,enabled";
13251             source: "elm";
13252             action: STATE_SET "default" 0.0;
13253             target: "disclip";
13254          }
13255       }
13256    }
13257
13258 // 2.2.4.1
13259    group { name: "elm/genlist/item/multiline/1title.2text/default";
13260       alias: "elm/genlist/item_odd/multiline/1title.2text/default";
13261       alias: "elm/genlist/item_compress/multiline/1title.2text/default";
13262       alias: "elm/genlist/item_compress_odd/multiline/1title.2text/default";
13263       data.item: "stacking" "above";
13264       data.item: "selectraise" "on";
13265       data.item: "texts" "elm.title elm.text.1 elm.text.2";
13266       parts {
13267          part { name: "base";
13268             type: RECT;
13269             repeat_events: 1;
13270             description { state: "default" 0.0;
13271                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13272             }
13273          }
13274          GENLIST_PART_BG_IMAGE
13275          GENLIST_PART_BOTTOM_LINE
13276          GENLIST_PART_PADDING_TOP( 0 )
13277          GENLIST_PART_PADDING_BOTTOM( 0 )
13278          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13279          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13280          part { name: "vertical_line";
13281             clip_to: "disclip";
13282             type: RECT;
13283             mouse_events: 0;
13284             description { state: "default" 0.0;
13285                min: 1 0;
13286                fixed: 1 0;
13287                rel1 {
13288                   relative: 1.0 0.0;
13289                   to_x: "elm.padding.title.right";
13290                }
13291                rel2.to_x: "elm.padding.title.right";
13292                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13293             }
13294          }
13295          part { name: "center_line";
13296             clip_to: "disclip";
13297             type: RECT;
13298             mouse_events: 0;
13299             description { state: "default" 0.0;
13300                min: 0 1;
13301                fixed: 0 1;
13302                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13303                rel1 {
13304                   relative: 1.0 0.5;
13305                   to_x: "vertical_line";
13306                }
13307                rel2.relative: 1.0 0.5;
13308                align: 0.5 1.0;
13309             }
13310          }
13311          part { name: "elm.title";
13312             clip_to: "disclip";
13313             type: TEXTBLOCK;
13314             mouse_events: 0;
13315             scale: 1;
13316             description { state: "default" 0.0;
13317                min: 224 0;
13318                fixed: 1 0;
13319                rel1 {
13320                   relative: 1.0 1.0;
13321                   to_x: "elm.padding.left";
13322                   to_y: "elm.padding.top";
13323                }
13324                rel2 {
13325                   relative: 1.0 0.0;
13326                   to_x: "elm.padding.left";
13327                   to_y: "elm.padding.bottom";
13328                }
13329                align: 0.0 0.5;
13330                text {
13331                   style: "genlist_style_multiline_text";
13332                   min: 0 1;
13333                   align: 0.0 0.5;
13334                }
13335             }
13336          }
13337          part { name: "elm.padding.title.right";
13338             clip_to: "disclip";
13339             type: RECT;
13340             mouse_events: 0;
13341             scale: 1;
13342             description { state: "default" 0.0;
13343                min: GENLIST_PADDING_16_INC 0;
13344                fixed: 1 0;
13345                rel1 {
13346                    relative: 1.0 0.0;
13347                    to_x: "elm.title";
13348                }
13349                rel2.to_x: "elm.title";
13350                visible: 0;
13351                align: 0.0 0.5;
13352             }
13353          }
13354          part { name: "elm.padding.text.left";
13355             clip_to: "disclip";
13356             type: RECT;
13357             mouse_events: 0;
13358             scale: 1;
13359             description { state: "default" 0.0;
13360                min: GENLIST_PADDING_16_INC 0;
13361                fixed: 1 0;
13362                rel1 {
13363                    relative: 1.0 0.0;
13364                    to_x: "vertical_line";
13365                }
13366                rel2.to_x: "vertical_line";
13367                visible: 0;
13368                align: 0.0 0.5;
13369             }
13370          }
13371          part { name: "elm.text.1";
13372             clip_to: "disclip";
13373             type: TEXT;
13374             mouse_events: 0;
13375             scale: 1;
13376             description { state: "default" 0.0;
13377                rel1 {
13378                   relative: 1.0 1.0;
13379                   to_x: "elm.padding.text.left";
13380                   to_y: "elm.padding.top";
13381                }
13382                rel2 {
13383                   relative: 0.0 0.0;
13384                   to_x: "elm.padding.right";
13385                   to_y: "center_line";
13386                }
13387                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13388                text {
13389                   font: "SLP:style=Roman";
13390                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13391                   min: 0 1;
13392                   align: 0.0 0.5;
13393                   text_class: "slp_roman";
13394                }
13395             }
13396          }
13397          part { name: "elm.text.2";
13398             clip_to: "disclip";
13399             type: TEXT;
13400             mouse_events: 0;
13401             scale: 1;
13402             description { state: "default" 0.0;
13403                rel1 {
13404                   relative: 1.0 1.0;
13405                   to_x: "elm.padding.text.left";
13406                   to_y: "center_line";
13407                }
13408                rel2 {
13409                   relative: 0.0 0.0;
13410                   to_x: "elm.padding.right";
13411                   to_y: "elm.padding.bottom";
13412                }
13413                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13414                text {
13415                   font: "SLP:style=Roman";
13416                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13417                   min: 0 1;
13418                   align: 0.0 0.5;
13419                   text_class: "slp_roman";
13420                }
13421             }
13422          }
13423          GENLIST_PART_DISCLIP
13424       }
13425       programs {
13426          // signal: elm,state,%s,active
13427          //   a "check" item named %s went active
13428          // signal: elm,state,%s,passive
13429          //   a "check" item named %s went passive
13430          // default is passive
13431          program { name: "go_active";
13432             signal: "elm,state,selected";
13433             source: "elm";
13434             action: STATE_SET "selected" 0.0;
13435             target: "bg_image";
13436             target: "elm.title";
13437             target: "elm.text.1";
13438             target: "elm.text.2";
13439             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13440          }
13441          program { name: "go_passive";
13442             signal: "elm,state,unselected";
13443             source: "elm";
13444             action: STATE_SET "default" 0.0;
13445             target: "bg_image";
13446             target: "elm.title";
13447             target: "elm.text.1";
13448             target: "elm.text.2";
13449             transition: LINEAR 0.1;
13450          }
13451          program { name: "go_disabled";
13452             signal: "elm,state,disabled";
13453             source: "elm";
13454             action: STATE_SET "disabled" 0.0;
13455             target: "disclip";
13456          }
13457          program { name: "go_enabled";
13458             signal: "elm,state,enabled";
13459             source: "elm";
13460             action: STATE_SET "default" 0.0;
13461             target: "disclip";
13462          }
13463          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13464       }
13465    }
13466
13467 // 3.4.5
13468    group { name: "elm/genlist/item_compress/multiline/1title.1text/default";
13469       alias: "elm/genlist/item_compress_odd/multiline/1title.1text/default";
13470       data.item: "stacking" "above";
13471       data.item: "selectraise" "on";
13472       data.item: "texts" "elm.title elm.text";
13473       parts {
13474          part { name: "base";
13475             type: RECT;
13476             repeat_events: 1;
13477             description { state: "default" 0.0;
13478                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13479             }
13480          }
13481          GENLIST_PART_BG_IMAGE
13482          GENLIST_PART_BOTTOM_LINE
13483          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13484          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13485          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13486          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13487          part { name: "elm.title";
13488             clip_to: "disclip";
13489             type: TEXT;
13490             mouse_events: 0;
13491             scale: 1;
13492             description { state: "default" 0.0;
13493                min: GENLIST_SIZE_195_INC 0;
13494                fixed: 1 0;
13495                rel1 {
13496                   relative: 1.0 0.0;
13497                   to_x: "elm.padding.left";
13498                }
13499                rel2 {
13500                   relative: 1.0 1.0;
13501                   to_x: "elm.padding.left";
13502                }
13503                align: 0.0 0.0;
13504                color: GENLIST_MULTILINE_TEXT_COLOR;
13505                text {
13506                   font: "SLP:style=Medium";
13507                   size: GENLIST_MULTILINE_TEXT_SIZE;
13508                   min: 0 1;
13509                   align: 0.0 0.5;
13510                   text_class: "slp_medium";
13511                }
13512             }
13513          }
13514          part { name: "elm.padding.title.right";
13515             clip_to: "disclip";
13516             type: RECT;
13517             mouse_events: 0;
13518             description { state: "default" 0.0;
13519                min: GENLIST_PADDING_16_INC 0;
13520                fixed: 1 0;
13521                rel1 {
13522                   relative: 1.0 0.0;
13523                   to_x: "elm.title";
13524                }
13525                rel2.to_x: "elm.title";
13526                align: 0.0 0.5;
13527                visible: 0;
13528             }
13529          }
13530          part { name: "vertical_line";
13531             clip_to: "disclip";
13532             type: RECT;
13533             mouse_events: 0;
13534             description { state: "default" 0.0;
13535                min: 1 0;
13536                fixed: 1 0;
13537                rel1 {
13538                   relative: 1.0 0.0;
13539                   to_x: "elm.padding.title.right";
13540                }
13541                rel2.to_x: "elm.padding.title.right";
13542                align: 0.0 0.5;
13543                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13544             }
13545          }
13546          part { name: "elm.padding.text.left";
13547             clip_to: "disclip";
13548             type: RECT;
13549             mouse_events: 0;
13550             description { state: "default" 0.0;
13551                min: GENLIST_PADDING_16_INC 0;
13552                fixed: 1 0;
13553                rel1 {
13554                   relative: 1.0 0.0;
13555                   to_x: "vertical_line";
13556                }
13557                rel2.to_x: "vertical_line";
13558                align: 0.0 0.5;
13559                visible: 0;
13560             }
13561          }
13562          part { name: "elm.text";
13563             clip_to: "disclip";
13564             type: TEXTBLOCK;
13565             mouse_events: 0;
13566             scale: 1;
13567             description { state: "default" 0.0;
13568                rel1 {
13569                   relative: 1.0 1.0;
13570                   to_x: "elm.padding.text.left";
13571                   to_y: "elm.padding.top";
13572                }
13573                rel2 {
13574                   relative: 0.0 0.0;
13575                   to_x: "elm.padding.right";
13576                   to_y: "elm.padding.bottom";
13577                }
13578                text {
13579                   style: "genlist_style_multiline_list_main_text_unread";
13580                   min: 0 1;
13581                   align: 0.0 0.5;
13582                   text_class: "list_item";
13583                }
13584             }
13585             description { state: "selected" 0.0;
13586                inherit: "default" 0.0;
13587                text.style: "genlist_style_multiline_list_main_text_focus";
13588             }
13589          }
13590          GENLIST_PART_DISCLIP
13591       }
13592       programs {
13593          // signal: elm,state,%s,active
13594          //   a "check" item named %s went active
13595          // signal: elm,state,%s,passive
13596          //   a "check" item named %s went passive
13597          // default is passive
13598          program { name: "go_active";
13599             signal: "elm,state,selected";
13600             source: "elm";
13601             action: STATE_SET "selected" 0.0;
13602             target: "bg_image";
13603             target: "elm.title";
13604             target: "elm.text";
13605             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13606          }
13607          program { name: "go_passive";
13608             signal: "elm,state,unselected";
13609             source: "elm";
13610             action: STATE_SET "default" 0.0;
13611             target: "bg_image";
13612             target: "elm.title";
13613             target: "elm.text";
13614             transition: LINEAR 0.1;
13615          }
13616          program { name: "go_disabled";
13617             signal: "elm,state,disabled";
13618             source: "elm";
13619             action: STATE_SET "disabled" 0.0;
13620             target: "disclip";
13621          }
13622          program { name: "go_enabled";
13623             signal: "elm,state,enabled";
13624             source: "elm";
13625             action: STATE_SET "default" 0.0;
13626             target: "disclip";
13627          }
13628          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13629       }
13630    }
13631
13632 // 3.4.6
13633    group { name: "elm/genlist/item_compress/multiline/2text.1icon/default";
13634       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon/default";
13635       data.item: "stacking" "above";
13636       data.item: "selectraise" "on";
13637       data.item: "texts" "elm.text.1 elm.text.2";
13638       data.item: "contents" "elm.icon";
13639       parts {
13640          part { name: "base";
13641             type: RECT;
13642             repeat_events: 1;
13643             description { state: "default" 0.0;
13644                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13645             }
13646          }
13647          GENLIST_PART_BG_IMAGE
13648          GENLIST_PART_BOTTOM_LINE
13649          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13650          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13651          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13652          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13653          part { name: "elm.text.1";
13654             clip_to: "disclip";
13655             type: TEXT;
13656             mouse_events: 0;
13657             scale: 1;
13658             description { state: "default" 0.0;
13659                min: 0 GENLIST_SIZE_48_INC;
13660                fixed: 0 1;
13661                rel1 {
13662                   relative: 1.0 1.0;
13663                   to_x: "elm.padding.left";
13664                   to_y: "elm.padding.top";
13665                }
13666                rel2 {
13667                   relative: 0.0 1.0;
13668                   to_x: "elm.padding.icon.left";
13669                   to_y: "elm.padding.top";
13670                }
13671                align: 0.0 0.0;
13672                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13673                text {
13674                   font: "SLP:style=Roman";
13675                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13676                   min: 0 1;
13677                   align: 0.0 0.5;
13678                   text_class: "list_item";
13679                }
13680             }
13681             description { state: "selected" 0.0;
13682                inherit: "default" 0.0;
13683                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
13684             }
13685          }
13686          part { name: "elm.icon";
13687             clip_to: "disclip";
13688             type: SWALLOW;
13689             scale: 1;
13690             description { state: "default" 0.0;
13691                fixed: 1 1;
13692                rel1 {
13693                   relative: 0.0 1.0;
13694                   to_x: "elm.padding.right";
13695                   to_y: "elm.padding.top";
13696                }
13697                rel2 {
13698                   relative: 0.0 0.0;
13699                   to_x: "elm.padding.right";
13700                   to_y: "elm.padding.bottom";
13701                }
13702                align: 1.0 0.5;
13703             }
13704             GENLIST_DESCRIPTION_FLIP_ENABLED
13705          }
13706          part { name: "elm.padding.icon.left";
13707             clip_to: "disclip";
13708             type: RECT;
13709             scale: 1;
13710             description { state: "default" 0.0;
13711                min: GENLIST_PADDING_16_INC 0;
13712                fixed: 1 0;
13713                rel1.to_x: "elm.icon";
13714                rel2 {
13715                   relative: 0.0 1.0;
13716                   to_x: "elm.icon";
13717                }
13718                align: 1.0 0.0;
13719                visible: 0;
13720             }
13721          }
13722          part { name: "elm.text.2";
13723             clip_to: "disclip";
13724             type: TEXTBLOCK;
13725             mouse_events: 0;
13726             scale: 1;
13727             description { state: "default" 0.0;
13728                rel1 {
13729                   relative: 1.0 1.0;
13730                   to_x: "elm.padding.left";
13731                   to_y: "elm.text.1";
13732                }
13733                rel2 {
13734                   relative: 0.0 0.0;
13735                   to_x: "elm.padding.icon.left";
13736                   to_y: "elm.padding.bottom";
13737                }
13738                text {
13739                   style: "genlist_style_flexible_text_sub";
13740                   min: 0 1;
13741                   align: 0.0 0.5;
13742                }
13743             }
13744          }
13745          GENLIST_PART_DISCLIP
13746       }
13747       programs {
13748          // signal: elm,state,%s,active
13749          //   a "check" item named %s went active
13750          // signal: elm,state,%s,passive
13751          //   a "check" item named %s went passive
13752          // default is passive
13753          program { name: "go_active";
13754             signal: "elm,state,selected";
13755             source: "elm";
13756             action: STATE_SET "selected" 0.0;
13757             target: "bg_image";
13758             target: "elm.text.1";
13759             target: "elm.text.2";
13760             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13761          }
13762          program { name: "go_passive";
13763             signal: "elm,state,unselected";
13764             source: "elm";
13765             action: STATE_SET "default" 0.0;
13766             target: "bg_image";
13767             target: "elm.text.1";
13768             target: "elm.text.2";
13769             transition: LINEAR 0.1;
13770          }
13771          program { name: "go_disabled";
13772             signal: "elm,state,disabled";
13773             source: "elm";
13774             action: STATE_SET "disabled" 0.0;
13775             target: "disclip";
13776          }
13777          program { name: "go_enabled";
13778             signal: "elm,state,enabled";
13779             source: "elm";
13780             action: STATE_SET "default" 0.0;
13781             target: "disclip";
13782          }
13783          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13784       }
13785    }
13786
13787 // 3.4.7
13788    group { name: "elm/genlist/item_compress/multiline/2text.1icon.2/default";
13789       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon.2/default";
13790       data.item: "stacking" "above";
13791       data.item: "selectraise" "on";
13792       data.item: "texts" "elm.text.1 elm.text.2";
13793       data.item: "contents" "elm.icon";
13794       parts {
13795          part { name: "base";
13796             type: RECT;
13797             repeat_events: 1;
13798             description { state: "default" 0.0;
13799                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
13800             }
13801          }
13802          GENLIST_PART_BG_IMAGE
13803          GENLIST_PART_BOTTOM_LINE
13804          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13805          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13806          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13807          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13808          part { name: "elm.icon";
13809             clip_to: "disclip";
13810             type: SWALLOW;
13811             scale: 1;
13812             description { state: "default" 0.0;
13813                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13814                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13815                fixed: 1 1;
13816                rel1 {
13817                   relative: 1.0 1.0;
13818                   to_x: "elm.padding.left";
13819                   to_y: "elm.padding.top";
13820                }
13821                rel2 {
13822                   relative: 1.0 1.0;
13823                   to_x: "elm.padding.left";
13824                   to_y: "elm.text.1";
13825                }
13826                align: 0.0 0.5;
13827             }
13828             GENLIST_DESCRIPTION_FLIP_ENABLED
13829          }
13830          part { name: "elm.padding.icon.right";
13831             clip_to: "disclip";
13832             type: RECT;
13833             scale: 1;
13834             description { state: "default" 0.0;
13835                min: GENLIST_PADDING_16_INC 0;
13836                fixed: 1 0;
13837                rel1 {
13838                   relative: 1.0 0.0;
13839                   to_x: "elm.icon";
13840                }
13841                rel2.to_x: "elm.icon";
13842                align: 0.0 0.0;
13843                visible: 0;
13844             }
13845          }
13846          part { name: "elm.text.1";
13847             clip_to: "disclip";
13848             type: TEXT;
13849             mouse_events: 0;
13850             scale: 1;
13851             description { state: "default" 0.0;
13852                min: 0 GENLIST_SIZE_48_INC;
13853                fixed: 0 1;
13854                rel1 {
13855                   relative: 1.0 1.0;
13856                   to_x: "elm.padding.icon.right";
13857                   to_y: "elm.padding.top";
13858                }
13859                rel2 {
13860                   relative: 0.0 1.0;
13861                   to_x: "elm.padding.right";
13862                   to_y: "elm.padding.top";
13863                }
13864                align: 0.0 0.0;
13865                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
13866                text {
13867                   font: "SLP:style=Roman";
13868                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
13869                   min: 0 1;
13870                   align: 0.0 0.5;
13871                   text_class: "list_item";
13872                }
13873             }
13874             description { state: "selected" 0.0;
13875                inherit: "default" 0.0;
13876                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
13877             }
13878          }
13879          part { name: "elm.text.2";
13880             clip_to: "disclip";
13881             type: TEXTBLOCK;
13882             mouse_events: 0;
13883             scale: 1;
13884             description { state: "default" 0.0;
13885                rel1 {
13886                   relative: 1.0 1.0;
13887                   to_x: "elm.padding.left";
13888                   to_y: "elm.text.1";
13889                }
13890                rel2 {
13891                   relative: 0.0 0.0;
13892                   to_x: "elm.padding.right";
13893                   to_y: "elm.padding.bottom";
13894                }
13895                text {
13896                   style: "genlist_style_flexible_text_sub";
13897                   min: 0 1;
13898                   align: 0.0 0.5;
13899                }
13900             }
13901          }
13902          GENLIST_PART_DISCLIP
13903       }
13904       programs {
13905          // signal: elm,state,%s,active
13906          //   a "check" item named %s went active
13907          // signal: elm,state,%s,passive
13908          //   a "check" item named %s went passive
13909          // default is passive
13910          program { name: "go_active";
13911             signal: "elm,state,selected";
13912             source: "elm";
13913             action: STATE_SET "selected" 0.0;
13914             target: "bg_image";
13915             target: "elm.text.1";
13916             target: "elm.text.2";
13917             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13918          }
13919          program { name: "go_passive";
13920             signal: "elm,state,unselected";
13921             source: "elm";
13922             action: STATE_SET "default" 0.0;
13923             target: "bg_image";
13924             target: "elm.text.1";
13925             target: "elm.text.2";
13926             transition: LINEAR 0.1;
13927          }
13928          program { name: "go_disabled";
13929             signal: "elm,state,disabled";
13930             source: "elm";
13931             action: STATE_SET "disabled" 0.0;
13932             target: "disclip";
13933          }
13934          program { name: "go_enabled";
13935             signal: "elm,state,enabled";
13936             source: "elm";
13937             action: STATE_SET "default" 0.0;
13938             target: "disclip";
13939          }
13940          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13941       }
13942    }
13943
13944    group { name: "elm/genlist/item/readmessage/default";
13945       alias: "elm/genlist/item_odd/readmessage/default";
13946       alias: "elm/genlist/item_compress/readmessage/default";
13947       alias: "elm/genlist/item_compress_odd/readmessage/default";
13948
13949       data.item: "stacking" "above";
13950       data.item: "selectraise" "on";
13951       data.item: "contents" "elm.icon";
13952       parts {
13953          part { name: "base";
13954             type: RECT;
13955             repeat_events: 1;
13956             description { state: "default" 0.0;
13957                color: GENLIST_PART_LIST_BG_COLOR;
13958             }
13959          }
13960          part { name: "elm.icon";
13961             clip_to: "disclip";
13962             type: SWALLOW;
13963             scale: 1;
13964             description { state: "default" 0.0;
13965                //rel1 { relative: 0.0 1.0; to_y: "elm.rect.top.pad"; }
13966                rel2 {
13967                   relative: 0.76 0.0;
13968                   to_y: "elm.padding.bottom";
13969                }
13970             }
13971          }
13972          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
13973          GENLIST_PART_DISCLIP
13974       }
13975       programs {
13976          // signal: elm,state,%s,active
13977          //   a "check" item named %s went active
13978          // signal: elm,state,%s,passive
13979          //   a "check" item named %s went passive
13980          // default is passive
13981          /*program { name: "go_active";
13982             signal: "elm,state,selected";
13983             source: "elm";
13984             action: STATE_SET "selected" 0.0;
13985             target: "bg_image";
13986          }
13987          program { name: "go_passive";
13988             signal: "elm,state,unselected";
13989             source: "elm";
13990             action: STATE_SET "default" 0.0;
13991             target: "bg_image";
13992             transition: LINEAR 0.1;
13993          }*/
13994          program { name: "go_disabled";
13995             signal: "elm,state,disabled";
13996             source: "elm";
13997             action: STATE_SET "disabled" 0.0;
13998             target: "disclip";
13999          }
14000          program { name: "go_enabled";
14001             signal: "elm,state,enabled";
14002             source: "elm";
14003             action: STATE_SET "default" 0.0;
14004             target: "disclip";
14005          }
14006       }
14007    }
14008
14009    group { name: "elm/genlist/item/sentmessage/default";
14010       alias: "elm/genlist/item_odd/sentmessage/default";
14011       alias: "elm/genlist/item_compress/sentmessage/default";
14012       alias: "elm/genlist/item_compress_odd/sentmessage/default";
14013
14014       data.item: "stacking" "above";
14015       data.item: "selectraise" "on";
14016       data.item: "contents" "elm.icon";
14017       parts {
14018          part { name: "base";
14019             type: RECT;
14020             repeat_events: 1;
14021             description { state: "default" 0.0;
14022                color: GENLIST_PART_LIST_BG_COLOR;
14023             }
14024          }
14025          part { name: "elm.icon";
14026             clip_to: "disclip";
14027             type: SWALLOW;
14028             scale: 1;
14029             description { state: "default" 0.0;
14030                rel1.relative: 0.24 0.0; //to_y: "elm.rect.top.pad"; }
14031                rel2 {
14032                   relative: 1.0 0.0;
14033                   to_y: "elm.padding.bottom";
14034                }
14035             }
14036          }
14037          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
14038          GENLIST_PART_DISCLIP
14039       }
14040       programs {
14041          // signal: elm,state,%s,active
14042          //   a "check" item named %s went active
14043          // signal: elm,state,%s,passive
14044          //   a "check" item named %s went passive
14045          // default is passive
14046          /*program { name: "go_active";
14047             signal: "elm,state,selected";
14048             source: "elm";
14049             action: STATE_SET "selected" 0.0;
14050             target: "bg_image";
14051          }
14052          program { name: "go_passive";
14053             signal: "elm,state,unselected";
14054             source: "elm";
14055             action: STATE_SET "default" 0.0;
14056             target: "bg_image";
14057             transition: LINEAR 0.1;
14058          }*/
14059          program { name: "go_disabled";
14060             signal: "elm,state,disabled";
14061             source: "elm";
14062             action: STATE_SET "disabled" 0.0;
14063             target: "disclip";
14064          }
14065          program { name: "go_enabled";
14066             signal: "elm,state,enabled";
14067             source: "elm";
14068             action: STATE_SET "default" 0.0;
14069             target: "disclip";
14070          }
14071       }
14072    }
14073
14074 // 2.4.4.1
14075    group { name : "elm/genlist/item/dialogue/title/default";
14076       alias: "elm/genlist/item_odd/dialogue/title/default";
14077       alias: "elm/genlist/item_compress/dialogue/title/default";
14078       alias: "elm/genlist/item_compress_odd/dialogue/title/default";
14079       alias: "elm/layout/dialogue/title";
14080       alias: "elm/genlist/item/dialogue/grouptitle/default";
14081       alias: "elm/genlist/item_odd/dialogue/grouptitle/default";
14082       alias: "elm/genlist/item_compress/dialogue/grouptitle/default";
14083       alias: "elm/genlist/item_compress_odd/dialogue/grouptitle/default";
14084       alias: "elm/layout/dialogue/grouptitle";
14085
14086       data.item: "stacking" "above";
14087       data.item: "selectraise" "on";
14088       data.item: "texts" "elm.text";
14089       data.item: "contents" "elm.icon";
14090       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14091
14092       parts {
14093          // GENLIST_PART_BASE_EVENT_OFF
14094          GENLIST_PART_DISCLIP
14095          GENLIST_PART_DIALOGUE_BASE( GENLIST_DIALOGUE_GROUP_TITLE_HEIGHT )
14096          GENLIST_PART_PADDING_TOP( GENLIST_DIALOGUE_GROUP_TITLE_PADDING_TOP_SIZE )
14097          GENLIST_PART_PADDING_BOTTOM( GENLIST_DIALOGUE_GROUP_TITLE_PADDING_BOTTOM_SIZE )
14098          GENLIST_PART_PADDING_LEFT( 10 )
14099          GENLIST_PART_PADDING_RIGHT( 17 )
14100          GENLIST_PART_BOTTOM_LINE
14101          part { name: "elm.text";
14102             type: TEXT;
14103             scale: 1;
14104             description { state: "default" 0.0;
14105                align: 0.0 0.0;
14106                rel1 {
14107                   relative: 1.0 1.0;
14108                   to_x: "elm.padding.left";
14109                   to_y: "elm.padding.top";
14110                }
14111                rel2 {
14112                   relative: 0.0 0.0;
14113                   offset: 32 0;
14114                   to_x: "elm.icon";
14115                   to_y: "elm.padding.bottom";
14116                }
14117                color: GENLIST_DIALOGUE_GT_TEXT_COLOR;
14118                text {
14119                   font: "SLP:style=Medium";
14120                   size: GENLIST_FONT_28_INC;
14121                   min: 0 1;
14122                   align: 0.0 0.5;
14123                   text_class: "list_item";
14124                }
14125             }
14126          }
14127          part { name: "elm.icon";
14128             type: SWALLOW;
14129             scale: 1;
14130             description { state: "default" 0.0;
14131                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14132                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14133                fixed: 1 1;
14134                            align: 1.0 1.0;
14135                rel2 {
14136                   relative: 0.0 0.0;
14137                   to_x: "elm.padding.right";
14138                   to_y: "elm.padding.bottom";
14139                }
14140             }
14141          }
14142       }
14143    }
14144
14145 // Dialogue Group Separators
14146 // default separator
14147 // FIXME: style (dialogue) might be moved to last words (as-is default)
14148 // FIXME: seperator --> separator typo
14149 // FIXME: Check whether below separators are used now..
14150    group { name : "elm/genlist/item/dialogue/separator/default";
14151       alias: "elm/genlist/item_odd/dialogue/separator/default";
14152       alias: "elm/genlist/item_compress/dialogue/separator/default";
14153       alias: "elm/genlist/item_compress_odd/dialogue/separator/default";
14154           //FIXME: below name should be used??
14155       alias: "elm/genlist/item/dialogue/separator/21/with_line/default";
14156       alias: "elm/genlist/item_odd/dialogue/separator/21/with_line/default";
14157       alias: "elm/genlist/item_compress/dialogue/separator/21/with_line/default";
14158       alias: "elm/genlist/item_compress_odd/dialogue/separator/21/with_line/default";
14159       alias: "elm/layout/dialogue/separator/hd33/with_line";
14160
14161       data.item: "stacking" "above";
14162       data.item: "selectraise" "on";
14163       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14164
14165       parts {
14166          GENLIST_PART_DIALOGUE_BASE(GENLIST_DIALOGUE_SEPARATOR_DEFAULT_HEIGHT + 1)
14167          GENLIST_PART_BOTTOM_LINE
14168          GENLIST_PART_DISCLIP
14169       }
14170    }
14171
14172    group { name : "elm/genlist/item/dialogue/separator/end/default";
14173       alias: "elm/genlist/item_odd/dialogue/separator/end/default";
14174       alias: "elm/genlist/item_compress/dialogue/separator/end/default";
14175       alias: "elm/genlist/item_compress_odd/dialogue/separator/end/default";
14176       data.item: "stacking" "above";
14177       data.item: "selectraise" "on";
14178       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14179       parts {
14180          GENLIST_PART_DIALOGUE_BASE(GENLIST_DIALOGUE_SEPARATOR_DEFAULT_HEIGHT)
14181          GENLIST_PART_DISCLIP
14182       }
14183    }
14184
14185    group { name : "elm/genlist/item/dialogue/seperator.2/default";
14186       alias: "elm/genlist/item_odd/dialogue/seperator.2/default";
14187       alias: "elm/genlist/item_compress/dialogue/seperator.2/default";
14188       alias: "elm/genlist/item_compress_odd/dialogue/seperator.2/default";
14189       alias: "elm/genlist/item/dialogue/separator/11/with_line/default";
14190       alias: "elm/genlist/item_odd/dialogue/separator/11/with_line/default";
14191       alias: "elm/genlist/item_compress/dialogue/separator/11/with_line/default";
14192       alias: "elm/genlist/item_compress_odd/dialogue/separator/11/with_line/default";
14193       alias: "elm/layout/dialogue/separator/hd18/with_line";
14194
14195       data.item: "stacking" "above";
14196       data.item: "selectraise" "on";
14197       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14198
14199       parts {
14200          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_18_INC )
14201          GENLIST_PART_BOTTOM_LINE
14202          GENLIST_PART_DISCLIP
14203       }
14204    }
14205
14206    group { name : "elm/genlist/item/dialogue/seperator.3/default";
14207       alias: "elm/genlist/item_odd/dialogue/seperator.3/default";
14208       alias: "elm/genlist/item_compress/dialogue/seperator.3/default";
14209       alias: "elm/genlist/item_compress_odd/dialogue/seperator.3/default";
14210       alias: "elm/genlist/item/dialogue/separator/20/default";
14211       alias: "elm/genlist/item_odd/dialogue/separator/20/default";
14212       alias: "elm/genlist/item_compress/dialogue/separator/20/default";
14213       alias: "elm/genlist/item_compress_odd/dialogue/separator/20/default";
14214       alias: "elm/layout/dialogue/separator/hd32";
14215
14216       data.item: "stacking" "above";
14217       data.item: "selectraise" "on";
14218       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14219
14220       parts {
14221          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_32_INC )
14222          GENLIST_PART_DISCLIP
14223       }
14224    }
14225
14226    group { name : "elm/genlist/item/dialogue/seperator.4/default";
14227       alias: "elm/genlist/item_odd/dialogue/seperator.4/default";
14228       alias: "elm/genlist/item_compress/dialogue/seperator.4/default";
14229       alias: "elm/genlist/item_compress_odd/dialogue/seperator.4/default";
14230       alias: "elm/genlist/item/dialogue/separator/10/default";
14231       alias: "elm/genlist/item_odd/dialogue/separator/10/default";
14232       alias: "elm/genlist/item_compress/dialogue/separator/10/default";
14233       alias: "elm/genlist/item_compress_odd/dialogue/separator/10/default";
14234       alias: "elm/layout/dialogue/separator/hd16";
14235
14236       data.item: "stacking" "above";
14237       data.item: "selectraise" "on";
14238       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14239
14240       parts {
14241          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_16_INC )
14242          GENLIST_PART_DISCLIP
14243       }
14244    }
14245
14246    group { name : "elm/genlist/item/dialogue/seperator.5/default";
14247       alias: "elm/genlist/item_odd/dialogue/seperator.5/default";
14248       alias: "elm/genlist/item_compress/dialogue/seperator.5/default";
14249       alias: "elm/genlist/item_compress_odd/dialogue/seperator.5/default";
14250       alias: "elm/genlist/item/dialogue/separator/1/with_line/default";
14251       alias: "elm/genlist/item_odd/dialogue/separator/1/with_line/default";
14252       alias: "elm/genlist/item_compress/dialogue/separator/1/with_line/default";
14253       alias: "elm/genlist/item_compress_odd/dialogue/separator/1/with_line/default";
14254       alias: "elm/layout/dialogue/separator/hd1";
14255
14256       data.item: "stacking" "above";
14257       data.item: "selectraise" "on";
14258       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14259
14260       parts {
14261          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_1_INC )
14262          GENLIST_PART_BOTTOM_LINE
14263          GENLIST_PART_DISCLIP
14264       }
14265    }
14266
14267 // 4.1.1
14268    group { name: "elm/genlist/item/dialogue/1text/default";
14269       alias: "elm/genlist/item_odd/dialogue/1text/default";
14270       alias: "elm/genlist/item_compress/dialogue/1text/default";
14271       alias: "elm/genlist/item_compress_odd/dialogue/1text/default";
14272       alias: "elm/genlist/item/dialogue.1text/default";
14273       alias: "elm/genlist/item_odd/dialogue.1text/default";
14274       alias: "elm/genlist/item_compress/dialogue.1text/default";
14275       alias: "elm/genlist/item_compress_odd/dialogue.1text/default";
14276       alias: "elm/layout/dialogue/1text";
14277       data.item: "stacking" "above";
14278       data.item: "selectraise" "on";
14279       data.item: "texts" "elm.text";
14280       data.item: "flips" "elm.flip.content";
14281       parts {
14282          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14283          GENLIST_PART_DIALOGUE_BG_IMAGE
14284          GENLIST_PART_BOTTOM_LINE
14285          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14286          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14287          GENLIST_PART_DIALOGUE_ITEM
14288          GENLIST_PART_DIALOGUE_RIGHT_LINE
14289          part { name: "elm.text";
14290             clip_to: "disclip";
14291             type: TEXT;
14292             mouse_events: 0;
14293             scale: 1;
14294             description { state: "default" 0.0;
14295                rel1 {
14296                   relative: 1.0  0.0;
14297                   to_x: "elm.padding.left";
14298                }
14299                rel2 {
14300                   relative: 0.0 1.0;
14301                   to_x: "elm.padding.right";
14302                }
14303                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14304                text {
14305                   font: "SLP:style=Roman";
14306                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14307                   min: 0 1;
14308                   align: 0.0 0.5;
14309                   text_class: "list_item";
14310                }
14311             }
14312             description { state: "selected" 0.0;
14313                inherit: "default" 0.0;
14314                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14315             }
14316             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14317             GENLIST_DESCRIPTION_FLIP_ENABLED
14318          }
14319          GENLIST_PART_FLIP
14320          GENLIST_PART_DISCLIP
14321       }
14322       programs {
14323          // signal: elm,state,%s,active
14324          //   a "check" item named %s went active
14325          // signal: elm,state,%s,passive
14326          //   a "check" item named %s went passive
14327          // default is passive
14328          program { name: "go_active";
14329             signal: "elm,state,selected";
14330             source: "elm";
14331             action: STATE_SET "selected" 0.0;
14332             target: "bg_image";
14333             target: "elm.text";
14334             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14335          }
14336          program { name: "go_passive";
14337             signal: "elm,state,unselected";
14338             source: "elm";
14339             action: STATE_SET "default" 0.0;
14340             target: "bg_image";
14341             target: "elm.text";
14342             transition: LINEAR 0.1;
14343          }
14344          program { name: "go_disabled";
14345             signal: "elm,state,disabled";
14346             source: "elm";
14347             action: STATE_SET "disabled" 0.0;
14348             target: "disclip";
14349          }
14350          program { name: "go_enabled";
14351             signal: "elm,state,enabled";
14352             source: "elm";
14353             action: STATE_SET "default" 0.0;
14354             target: "disclip";
14355          }
14356          GENLIST_PROGRAM_FLIP_1TEXT
14357          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14358       }
14359    }
14360
14361 // 4.1.2
14362    group { name: "elm/genlist/item/dialogue/1text.1icon/default";
14363       alias: "elm/genlist/item_odd/dialogue/1text.1icon/default";
14364       alias: "elm/genlist/item_compress/dialogue/1text.1icon/default";
14365       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon/default";
14366       alias: "elm/layout/dialogue/1text.1icon";
14367       data.item: "stacking" "above";
14368       data.item: "selectraise" "on";
14369       data.item: "texts" "elm.text";
14370       data.item: "contents" "elm.icon";
14371       data.item: "flips" "elm.flip.content";
14372       parts {
14373          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14374          GENLIST_PART_DIALOGUE_BG_IMAGE
14375          GENLIST_PART_BOTTOM_LINE
14376          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14377          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14378          GENLIST_PART_DIALOGUE_ITEM
14379          GENLIST_PART_DIALOGUE_RIGHT_LINE
14380          part { name: "elm.icon";
14381             clip_to: "disclip";
14382             type: SWALLOW;
14383             scale: 1;
14384             description { state: "default" 0.0;
14385                fixed: 1 1;
14386                rel1.to_x: "elm.padding.right";
14387                rel2 {
14388                   relative: 0.0 1.0;
14389                   to_x: "elm.padding.right";
14390                }
14391                align: 1.0 0.5;
14392             }
14393             GENLIST_DESCRIPTION_FLIP_ENABLED
14394          }
14395          part { name: "elm.padding.icon.left";
14396             clip_to: "disclip";
14397             type: RECT;
14398             scale: 1;
14399             description { state: "default" 0.0;
14400                min: GENLIST_PADDING_16_INC 0;
14401                fixed: 1 0;
14402                rel1.to_x: "elm.icon";
14403                rel2 {
14404                   relative: 0.0 1.0;
14405                   to_x: "elm.icon";
14406                }
14407                align: 1.0 0.0;
14408                visible: 0;
14409             }
14410          }
14411          part { name: "elm.text";
14412             clip_to: "disclip";
14413             type: TEXT;
14414             mouse_events: 0;
14415             scale: 1;
14416             description { state: "default" 0.0;
14417                rel1 {
14418                   relative: 1.0 0.0;
14419                   to_x: "elm.padding.left";
14420                }
14421                rel2 {
14422                   relative: 0.0 1.0;
14423                   to_x: "elm.padding.icon.left";
14424                }
14425                align: 0.0 0.0;
14426                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14427                text {
14428                   font: "SLP:style=Roman";
14429                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14430                   min: 0 1;
14431                   align: 0.0 0.5;
14432                   text_class: "list_item";
14433                }
14434             }
14435             description { state: "selected" 0.0;
14436                inherit: "default" 0.0;
14437                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14438             }
14439             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14440             GENLIST_DESCRIPTION_FLIP_ENABLED
14441          }
14442          GENLIST_PART_FLIP
14443          GENLIST_PART_DISCLIP
14444       }
14445       programs {
14446          program { name: "go_active";
14447             signal: "elm,state,selected";
14448             source: "elm";
14449             action: STATE_SET "selected" 0.0;
14450             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
14451             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14452          }
14453          program { name: "go_passive";
14454             signal: "elm,state,unselected";
14455             source: "elm";
14456             action: STATE_SET "default" 0.0;
14457             target: "bg_image";
14458             target: "elm.text";
14459             transition: LINEAR 0.1;
14460          }
14461          program { name: "go_disabled";
14462             signal: "elm,state,disabled";
14463             source: "elm";
14464             action: STATE_SET "disabled" 0.0;
14465             target: "disclip";
14466          }
14467          program { name: "go_enabled";
14468             signal: "elm,state,enabled";
14469             source: "elm";
14470             action: STATE_SET "default" 0.0;
14471             target: "disclip";
14472          }
14473          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
14474          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14475       }
14476    }
14477
14478 // 4.1.3
14479    group { name: "elm/genlist/item/dialogue/1text.1icon.2/default";
14480       alias: "elm/genlist/item_odd/dialogue/1text.1icon.2/default";
14481       alias: "elm/genlist/item_compress/dialogue/1text.1icon.2/default";
14482       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.2/default";
14483       alias: "elm/layout/dialogue/1text.1icon.2";
14484       data.item: "stacking" "above";
14485       data.item: "selectraise" "on";
14486       data.item: "texts" "elm.text";
14487       data.item: "contents" "elm.icon";
14488       data.item: "flips" "elm.flip.content";
14489       parts {
14490          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14491          GENLIST_PART_DIALOGUE_BG_IMAGE
14492          GENLIST_PART_BOTTOM_LINE
14493          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14494          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14495          GENLIST_PART_DIALOGUE_ITEM
14496          GENLIST_PART_DIALOGUE_RIGHT_LINE
14497          part { name: "elm.icon";
14498             clip_to: "disclip";
14499             type: SWALLOW;
14500             scale: 1;
14501             description { state: "default" 0.0;
14502                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14503                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14504                fixed: 1 1;
14505                rel1 {
14506                   relative: 1.0 0.0;
14507                   to_x: "elm.padding.left";
14508                }
14509                rel2 {
14510                   relative: 1.0 1.0;
14511                   to_x: "elm.padding.left";
14512                }
14513                align: 0.0 0.5;
14514             }
14515             GENLIST_DESCRIPTION_FLIP_ENABLED
14516          }
14517          part { name: "elm.padding.icon.right";
14518             clip_to: "disclip";
14519             type: RECT;
14520             scale: 1;
14521             description { state: "default" 0.0;
14522                min: GENLIST_PADDING_16_INC 0;
14523                fixed: 1 0;
14524                rel1 {
14525                   relative: 1.0 0.0;
14526                   to_x: "elm.icon";
14527                }
14528                rel2.to_x: "elm.icon";
14529                align: 0.0 0.0;
14530                visible: 0;
14531             }
14532          }
14533          part { name: "elm.text";
14534             clip_to: "disclip";
14535             type: TEXT;
14536             mouse_events: 0;
14537             scale: 1;
14538             description { state: "default" 0.0;
14539                rel1 {
14540                   relative: 1.0 0.0;
14541                   to_x: "elm.padding.icon.right";
14542                }
14543                rel2 {
14544                   relative: 0.0 1.0;
14545                   to_x: "elm.padding.right";
14546                }
14547                align: 0.0 0.0;
14548                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14549                text {
14550                   font: "SLP:style=Roman";
14551                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14552                   min: 0 1;
14553                   align: 0.0 0.5;
14554                   text_class: "list_item";
14555                }
14556             }
14557             description { state: "selected" 0.0;
14558                inherit: "default" 0.0;
14559                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14560             }
14561             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14562             GENLIST_DESCRIPTION_FLIP_ENABLED
14563          }
14564          GENLIST_PART_FLIP
14565          GENLIST_PART_DISCLIP
14566       }
14567       programs {
14568          program { name: "go_active";
14569             signal: "elm,state,selected";
14570             source: "elm";
14571             action: STATE_SET "selected" 0.0;
14572             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
14573             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14574          }
14575          program { name: "go_passive";
14576             signal: "elm,state,unselected";
14577             source: "elm";
14578             action: STATE_SET "default" 0.0;
14579             target: "bg_image";
14580             target: "elm.text";
14581             transition: LINEAR 0.1;
14582          }
14583          program { name: "go_disabled";
14584             signal: "elm,state,disabled";
14585             source: "elm";
14586             action: STATE_SET "disabled" 0.0;
14587             target: "disclip";
14588          }
14589          program { name: "go_enabled";
14590             signal: "elm,state,enabled";
14591             source: "elm";
14592             action: STATE_SET "default" 0.0;
14593             target: "disclip";
14594          }
14595          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
14596          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14597       }
14598    }
14599
14600 // 4.1.4
14601    group { name: "elm/genlist/item/dialogue/1text.2icon/default";
14602       alias: "elm/genlist/item_odd/dialogue/1text.2icon/default";
14603       alias: "elm/genlist/item_compress/dialogue/1text.2icon/default";
14604       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon/default";
14605       alias: "elm/layout/dialogue/1text.2icon";
14606       data.item: "stacking" "above";
14607       data.item: "selectraise" "on";
14608       data.item: "texts" "elm.text";
14609       data.item: "contents" "elm.icon.1 elm.icon.2";
14610       data.item: "flips" "elm.flip.content";
14611       parts {
14612          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14613          GENLIST_PART_DIALOGUE_BG_IMAGE
14614          GENLIST_PART_BOTTOM_LINE
14615          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14616          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14617          GENLIST_PART_DIALOGUE_ITEM
14618          GENLIST_PART_DIALOGUE_RIGHT_LINE
14619          part { name: "elm.icon.1";
14620             clip_to: "disclip";
14621             type: SWALLOW;
14622             scale: 1;
14623             description { state: "default" 0.0;
14624                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14625                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14626                fixed: 1 1;
14627                rel1 {
14628                   relative: 1.0 0.0;
14629                   to_x: "elm.padding.left";
14630                }
14631                rel2 {
14632                   relative: 1.0 1.0;
14633                   to_x: "elm.padding.left";
14634                }
14635                align: 0.0 0.5;
14636             }
14637             GENLIST_DESCRIPTION_FLIP_ENABLED
14638          }
14639          part { name: "elm.padding.icon.right";
14640             clip_to: "disclip";
14641             type: RECT;
14642             scale: 1;
14643             description { state: "default" 0.0;
14644                min: GENLIST_PADDING_16_INC 0;
14645                fixed: 1 0;
14646                rel1 {
14647                   relative: 1.0 0.0;
14648                   to_x: "elm.icon.1";
14649                }
14650                rel2.to_x: "elm.icon.1";
14651                align: 0.0 0.0;
14652                visible: 0;
14653             }
14654          }
14655          part { name: "elm.icon.2";
14656             clip_to: "disclip";
14657             type: SWALLOW;
14658             scale: 1;
14659             description { state: "default" 0.0;
14660                fixed: 1 1;
14661                rel1.to_x: "elm.padding.right";
14662                rel2 {
14663                   relative: 0.0 1.0;
14664                   to_x: "elm.padding.right";
14665                }
14666                align: 1.0 0.5;
14667             }
14668             GENLIST_DESCRIPTION_FLIP_ENABLED
14669          }
14670          part { name: "elm.padding.icon.left";
14671             clip_to: "disclip";
14672             type: RECT;
14673             scale: 1;
14674             description { state: "default" 0.0;
14675                min: GENLIST_PADDING_16_INC 0;
14676                fixed: 1 0;
14677                rel1.to_x: "elm.icon.2";
14678                rel2 {
14679                   relative: 0.0 1.0;
14680                   to_x: "elm.icon.2";
14681                }
14682                align: 1.0 0.0;
14683                visible: 0;
14684             }
14685          }
14686          part { name: "elm.text";
14687             clip_to: "disclip";
14688             type: TEXT;
14689             mouse_events: 0;
14690             scale: 1;
14691             description { state: "default" 0.0;
14692                rel1 {
14693                   relative: 1.0 0.0;
14694                   to_x: "elm.padding.icon.right";
14695                }
14696                rel2 {
14697                   relative: 0.0 1.0;
14698                   to_x: "elm.padding.icon.left";
14699                }
14700                align: 0.0 0.0;
14701                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14702                text {
14703                   font: "SLP:style=Roman";
14704                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14705                   min: 0 1;
14706                   align: 0.0 0.5;
14707                   text_class: "list_item";
14708                }
14709             }
14710             description { state: "selected" 0.0;
14711                inherit: "default" 0.0;
14712                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14713             }
14714             GENLIST_DESCRIPTION_FLIP_ENABLED
14715          }
14716          GENLIST_PART_FLIP
14717          GENLIST_PART_DISCLIP
14718       }
14719       programs {
14720          program { name: "go_active";
14721             signal: "elm,state,selected";
14722             source: "elm";
14723             action: STATE_SET "selected" 0.0;
14724             target: "bg_image";
14725             target: "elm.text";
14726             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14727          }
14728          program { name: "go_passive";
14729             signal: "elm,state,unselected";
14730             source: "elm";
14731             action: STATE_SET "default" 0.0;
14732             target: "bg_image";
14733             target: "elm.text";
14734             transition: LINEAR 0.1;
14735          }
14736          program { name: "go_disabled";
14737             signal: "elm,state,disabled";
14738             source: "elm";
14739             action: STATE_SET "disabled" 0.0;
14740             target: "disclip";
14741          }
14742          program { name: "go_enabled";
14743             signal: "elm,state,enabled";
14744             source: "elm";
14745             action: STATE_SET "default" 0.0;
14746             target: "disclip";
14747          }
14748          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
14749          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14750       }
14751    }
14752
14753 // 4.1.5
14754    group { name: "elm/genlist/item/dialogue/2text.1icon/default";
14755       alias: "elm/genlist/item_odd/dialogue/2text.1icon/default";
14756       alias: "elm/genlist/item_compress/dialogue/2text.1icon/default";
14757       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon/default";
14758       alias: "elm/layout/dialogue/2text.1icon";
14759       data.item: "stacking" "above";
14760       data.item: "selectraise" "on";
14761       data.item: "texts" "elm.text.1 elm.text.2";
14762       data.item: "contents" "elm.icon";
14763       data.item: "flips" "elm.flip.content";
14764       parts {
14765          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14766          GENLIST_PART_DIALOGUE_BG_IMAGE
14767          GENLIST_PART_BOTTOM_LINE
14768          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14769          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14770          GENLIST_PART_DIALOGUE_ITEM
14771          GENLIST_PART_DIALOGUE_RIGHT_LINE
14772          part { name: "elm.icon";
14773             clip_to: "disclip";
14774             type: SWALLOW;
14775             scale: 1;
14776             description { state: "default" 0.0;
14777                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14778                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14779                fixed: 1 1;
14780                rel1 {
14781                   relative: 1.0 0.0;
14782                   to_x: "elm.padding.left";
14783                }
14784                rel2 {
14785                   relative: 1.0 1.0;
14786                   to_x: "elm.padding.left";
14787                }
14788                align: 0.0 0.5;
14789             }
14790             GENLIST_DESCRIPTION_FLIP_ENABLED
14791          }
14792          part { name: "elm.padding.icon.right";
14793             clip_to: "disclip";
14794             type: RECT;
14795             scale: 1;
14796             description { state: "default" 0.0;
14797                min: GENLIST_PADDING_16_INC 0;
14798                fixed: 1 0;
14799                rel1 {
14800                   relative: 1.0 0.0;
14801                   to_x: "elm.icon";
14802                }
14803                rel2.to_x: "elm.icon";
14804                align: 0.0 0.0;
14805                visible: 0;
14806             }
14807          }
14808          part { name: "elm.text.2";
14809             clip_to: "disclip";
14810             type: TEXT;
14811             mouse_events: 0;
14812             scale: 1;
14813             description { state: "default" 0.0;
14814                min: GENLIST_SIZE_133_INC 0;
14815                fixed: 1 0;
14816                rel1.to_x: "elm.padding.right";
14817                rel2 {
14818                   relative: 0.0 1.0;
14819                   to_x: "elm.padding.right";
14820                }
14821                align: 1.0 0.5;
14822                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;;
14823                text {
14824                   font: "SLP:style=Medium";
14825                   size: GENLIST_FONT_32_INC;
14826                   min: 0 1;
14827                   align: 1.0 0.5;
14828                   text_class: "slp_medium";
14829                }
14830             }
14831             description { state: "selected" 0.0;
14832                inherit: "default" 0.0;
14833                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14834             }
14835             GENLIST_DESCRIPTION_FLIP_ENABLED
14836          }
14837          part { name: "elm.padding.text2.left";
14838             type: RECT;
14839             mouse_events: 0;
14840             scale: 1;
14841             description { state: "default" 0.0;
14842                min: GENLIST_ICON_SMALL_SIZE 0;
14843                fixed: 1 0;
14844                rel1.to_x: "elm.text.2";
14845                rel2 {
14846                   relative: 0.0 1.0;
14847                   to_x: "elm.text.2";
14848                }
14849                visible: 0;
14850                align: 1.0 0.5;
14851             }
14852          }
14853          part { name: "elm.text.1";
14854             clip_to: "disclip";
14855             type: TEXT;
14856             mouse_events: 0;
14857             scale: 1;
14858             description { state: "default" 0.0;
14859                rel1 {
14860                   relative: 1.0 0.0;
14861                   to_x: "elm.padding.icon.right";
14862                }
14863                rel2 {
14864                   relative: 0.0 1.0;
14865                   to_x: "elm.padding.text2.left";
14866                }
14867                align: 0.0 0.0;
14868                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
14869                text {
14870                   font: "SLP:style=Roman";
14871                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
14872                   min: 0 1;
14873                   align: 0.0 0.5;
14874                   text_class: "list_item";
14875                }
14876             }
14877             description { state: "selected" 0.0;
14878                inherit: "default" 0.0;
14879                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
14880             }
14881             GENLIST_DESCRIPTION_FLIP_ENABLED
14882          }
14883          GENLIST_PART_FLIP
14884          GENLIST_PART_DISCLIP
14885       }
14886       programs {
14887          program { name: "go_active";
14888             signal: "elm,state,selected";
14889             source: "elm";
14890             action: STATE_SET "selected" 0.0;
14891             target: "bg_image";
14892             target: "elm.text.1";
14893             target: "elm.text.2";
14894             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14895          }
14896          program { name: "go_passive";
14897             signal: "elm,state,unselected";
14898             source: "elm";
14899             action: STATE_SET "default" 0.0;
14900             target: "bg_image";
14901             target: "elm.text.1";
14902             target: "elm.text.2";
14903             transition: LINEAR 0.1;
14904          }
14905          program { name: "go_disabled";
14906             signal: "elm,state,disabled";
14907             source: "elm";
14908             action: STATE_SET "disabled" 0.0;
14909             target: "disclip";
14910          }
14911          program { name: "go_enabled";
14912             signal: "elm,state,enabled";
14913             source: "elm";
14914             action: STATE_SET "default" 0.0;
14915             target: "disclip";
14916          }
14917          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
14918          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14919       }
14920    }
14921 //
14922 // 4.1.6 textblock for message
14923    group { name: "elm/genlist/item/dialogue/1text.1icon.6/default";
14924       alias: "elm/genlist/item_odd/dialogue/1text.1icon.6/default";
14925       alias: "elm/genlist/item_compress/dialogue/1text.1icon.6/default";
14926       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.6/default";
14927       alias: "elm/layout/dialogue/1text.1icon.6";
14928       data.item: "stacking" "above";
14929       data.item: "selectraise" "on";
14930       data.item: "texts" "elm.text";
14931       data.item: "contents" "elm.icon";
14932       data.item: "flips" "elm.flip.content";
14933       parts {
14934          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14935          GENLIST_PART_DIALOGUE_BG_IMAGE
14936          GENLIST_PART_BOTTOM_LINE
14937          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14938          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14939          GENLIST_PART_DIALOGUE_ITEM
14940          GENLIST_PART_DIALOGUE_RIGHT_LINE
14941          part { name: "elm.icon";
14942             clip_to: "disclip";
14943             type: SWALLOW;
14944             scale: 1;
14945             description { state: "default" 0.0;
14946                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
14947                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
14948                fixed: 1 1;
14949                rel1 {
14950                   relative: 1.0 0.0;
14951                   to_x: "elm.padding.left";
14952                }
14953                rel2 {
14954                   relative: 1.0 1.0;
14955                   to_x: "elm.padding.left";
14956                }
14957                align: 0.0 0.5;
14958             }
14959             GENLIST_DESCRIPTION_FLIP_ENABLED
14960          }
14961          part { name: "elm.padding.icon.right";
14962             type: RECT;
14963             scale: 1;
14964             description { state: "default" 0.0;
14965                min: GENLIST_PADDING_16_INC 0;
14966                fixed: 1 0;
14967                rel1 {
14968                   relative: 1.0 0.0;
14969                   to_x: "elm.icon";
14970                }
14971                rel2.to_x: "elm.icon";
14972                align: 0.0 0.0;
14973                visible: 0;
14974             }
14975          }
14976          part { name: "elm.text";
14977             clip_to: "disclip";
14978             type: TEXTBLOCK;
14979             mouse_events: 0;
14980             scale: 1;
14981             description { state: "default" 0.0;
14982                rel1 {
14983                   relative: 1.0 0.0;
14984                   to_x: "elm.padding.icon.right";
14985                }
14986                rel2 {
14987                   relative: 0.0 1.0;
14988                   to_x: "elm.padding.right";
14989                }
14990                align: 0.0 0.5;
14991                text {
14992                   style: "genlist_style_list_main_text_unread";
14993                   min: 0 1;
14994                   align: 0.0 0.5;
14995                }
14996             }
14997             description { state: "selected" 0.0;
14998                inherit: "default" 0.0;
14999                text.style: "genlist_style_list_main_text_focus";
15000             }
15001             GENLIST_DESCRIPTION_FLIP_ENABLED
15002          }
15003          GENLIST_PART_FLIP
15004          GENLIST_PART_DISCLIP
15005       }
15006       programs {
15007          program { name: "go_active";
15008             signal: "elm,state,selected";
15009             source: "elm";
15010             action: STATE_SET "selected" 0.0;
15011             target: "bg_image";
15012             target: "elm.text";
15013             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15014          }
15015          program { name: "go_passive";
15016             signal: "elm,state,unselected";
15017             source: "elm";
15018             action: STATE_SET "default" 0.0;
15019             target: "bg_image";
15020             target: "elm.text";
15021             transition: LINEAR 0.1;
15022          }
15023          program { name: "go_disabled";
15024             signal: "elm,state,disabled";
15025             source: "elm";
15026             action: STATE_SET "disabled" 0.0;
15027             target: "disclip";
15028          }
15029          program { name: "go_enabled";
15030             signal: "elm,state,enabled";
15031             source: "elm";
15032             action: STATE_SET "default" 0.0;
15033             target: "disclip";
15034          }
15035          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15036          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15037       }
15038    }
15039
15040 // 4.1.17
15041    group { name: "elm/genlist/item/dialogue/1text.1icon.4/default";
15042       alias: "elm/genlist/item_odd/dialogue/1text.1icon.4/default";
15043       alias: "elm/genlist/item_compress/dialogue/1text.1icon.4/default";
15044       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.4/default";
15045       alias: "elm/layout/dialogue/1text.1icon.4";
15046       data.item: "stacking" "above";
15047       data.item: "selectraise" "on";
15048       data.item: "texts" "elm.text";
15049       data.item: "contents" "elm.icon";
15050       data.item: "flips" "elm.flip.content";
15051       parts {
15052          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15053          GENLIST_PART_DIALOGUE_BG_IMAGE
15054          GENLIST_PART_BOTTOM_LINE
15055          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15056          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15057          GENLIST_PART_DIALOGUE_ITEM
15058          GENLIST_PART_DIALOGUE_RIGHT_LINE
15059          part { name: "elm.icon";
15060             clip_to: "disclip";
15061             type: SWALLOW;
15062             scale: 1;
15063             description { state: "default" 0.0;
15064                min: 60 60;
15065                max: 60 60;
15066                fixed: 1 1;
15067                rel1.to_x: "elm.padding.right";
15068                rel2 {
15069                   relative: 0.0 1.0;
15070                   to_x: "elm.padding.right";
15071                }
15072                align: 1.0 0.5;
15073             }
15074             GENLIST_DESCRIPTION_FLIP_ENABLED
15075          }
15076          part { name: "elm.padding.icon.left";
15077             clip_to: "disclip";
15078             type: RECT;
15079             scale: 1;
15080             description { state: "default" 0.0;
15081                min: 10 0;
15082                fixed: 1 0;
15083                rel1.to_x: "elm.icon";
15084                rel2 {
15085                   relative: 0.0 1.0;
15086                   to_x: "elm.icon";
15087                }
15088                align: 1.0 0.0;
15089                visible: 0;
15090             }
15091          }
15092          part { name: "elm.text";
15093             clip_to: "disclip";
15094             type: TEXT;
15095             mouse_events: 0;
15096             scale: 1;
15097             description { state: "default" 0.0;
15098                rel1 {
15099                   relative: 1.0 0.0;
15100                   to_x: "elm.padding.left";
15101                }
15102                rel2 {
15103                   relative: 0.0 1.0;
15104                   to_x: "elm.padding.icon.left";
15105                }
15106                align: 0.0 0.0;
15107                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15108                text {
15109                   font: "SLP:style=Roman";
15110                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15111                   min: 0 1;
15112                   align: 0.0 0.5;
15113                   text_class: "list_item";
15114                }
15115             }
15116             description { state: "selected" 0.0;
15117                inherit: "default" 0.0;
15118                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15119             }
15120             GENLIST_DESCRIPTION_FLIP_ENABLED
15121          }
15122          GENLIST_PART_FLIP
15123          GENLIST_PART_DISCLIP
15124       }
15125       programs {
15126          program { name: "go_active";
15127             signal: "elm,state,selected";
15128             source: "elm";
15129             action: STATE_SET "selected" 0.0;
15130             target: "bg_image";
15131             target: "elm.text";
15132             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15133          }
15134          program { name: "go_passive";
15135             signal: "elm,state,unselected";
15136             source: "elm";
15137             action: STATE_SET "default" 0.0;
15138             target: "bg_image";
15139             target: "elm.text";
15140             transition: LINEAR 0.1;
15141          }
15142          program { name: "go_disabled";
15143             signal: "elm,state,disabled";
15144             source: "elm";
15145             action: STATE_SET "disabled" 0.0;
15146             target: "disclip";
15147          }
15148          program { name: "go_enabled";
15149             signal: "elm,state,enabled";
15150             source: "elm";
15151             action: STATE_SET "default" 0.0;
15152             target: "disclip";
15153          }
15154          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15155          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15156       }
15157    }
15158
15159    // 4.1.19
15160    group { name: "elm/genlist/item/dialogue/1text.1icon.5/default";
15161       alias: "elm/genlist/item_odd/dialogue/1text.1icon.5/default";
15162       alias: "elm/genlist/item_compress/dialogue/1text.1icon.5/default";
15163       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.5/default";
15164
15165       data.item: "stacking" "above";
15166       data.item: "selectraise" "on";
15167       data.item: "texts" "elm.text.1";
15168       data.item: "contents" "elm.icon.1";
15169
15170       parts {
15171          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
15172                  GENLIST_PART_DIALOGUE_BG_IMAGE
15173          GENLIST_PART_BOTTOM_LINE
15174          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
15175          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
15176          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15177          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15178          GENLIST_PART_DIALOGUE_ITEM
15179          GENLIST_PART_DIALOGUE_RIGHT_LINE
15180          part { name: "elm.text.1";
15181             clip_to: "disclip";
15182             type: TEXT;
15183             mouse_events: 0;
15184             scale: 1;
15185             description { state: "default" 0.0;
15186                min: 0 GENLIST_SIZE_48_INC;
15187                fixed: 0 1;
15188                rel1 {
15189                   relative: 1.0 1.0;
15190                   to_x: "elm.padding.left";
15191                   to_y: "elm.padding.top";
15192                }
15193                rel2 {
15194                   relative: 0.0 1.0;
15195                   to_x: "elm.padding.right";
15196                   to_y: "elm.padding.top";
15197                }
15198                align: 0.0 0.0;
15199                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
15200                text {
15201                   font: "SLP:style=Medium";
15202                   size: GENLIST_FONT_32_INC;
15203                   min: 0 1;
15204                   align: 0.0 0.5;
15205                   text_class: "list_item";
15206                }
15207             }
15208             description { state: "selected" 0.0;
15209                inherit: "default" 0.0;
15210                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
15211             }
15212             GENLIST_DESCRIPTION_FLIP_ENABLED
15213          }
15214          part { name: "elm.icon.1";
15215             type: SWALLOW;
15216             scale: 1;
15217             description { state: "default" 0.0;
15218                rel1 {
15219                   relative: 1.0 1.0;
15220                   to_x: "elm.padding.left";
15221                   to_y: "elm.text.1";
15222                }
15223                rel2 {
15224                   relative: 0.0 0.0;
15225                   to_x: "elm.padding.right";
15226                   to_y: "elm.padding.bottom";
15227                }
15228             }
15229          }
15230          GENLIST_PART_DISCLIP
15231       }
15232       programs {
15233          // signal: elm,state,%s,active
15234          //   a "check" item named %s went active
15235          // signal: elm,state,%s,passive
15236          //   a "check" item named %s went passive
15237          // default is passive
15238          /*program { name: "go_active";
15239             signal: "elm,state,selected";
15240             source: "elm";
15241             action: STATE_SET "selected" 0.0;
15242             target: "bg_image";
15243             target: "elm.text";
15244          }
15245          program { name: "go_passive";
15246             signal: "elm,state,unselected";
15247             source: "elm";
15248             action: STATE_SET "default" 0.0;
15249             target: "bg_image";
15250             target: "elm.text";
15251             transition: LINEAR 0.1;
15252          }*/
15253          program { name: "go_disabled";
15254             signal: "elm,state,disabled";
15255             source: "elm";
15256             action: STATE_SET "disabled" 0.0;
15257             target: "disclip";
15258          }
15259          program { name: "go_enabled";
15260             signal: "elm,state,enabled";
15261             source: "elm";
15262             action: STATE_SET "default" 0.0;
15263             target: "disclip";
15264          }
15265       }
15266    }
15267
15268    group { name: "elm/genlist/item/dialogue/2text.5/default";
15269       alias: "elm/genlist/item_odd/dialogue/2text.5/default";
15270       alias: "elm/genlist/item_compress/dialogue/2text.5/default";
15271       alias: "elm/genlist/item_compress_odd/dialogue/2text.5/default";
15272       data.item: "stacking" "above";
15273       data.item: "selectraise" "on";
15274       data.item: "texts" "elm.text.1 elm.text.2";
15275       data.item: "flips" "elm.flip.content";
15276       parts {
15277          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15278          GENLIST_PART_DIALOGUE_BG_IMAGE
15279          GENLIST_PART_BOTTOM_LINE
15280          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15281          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15282          GENLIST_PART_DIALOGUE_ITEM
15283          GENLIST_PART_DIALOGUE_RIGHT_LINE
15284          part { name: "elm.text.2";
15285             clip_to: "disclip";
15286             type: TEXT;
15287             mouse_events: 0;
15288             scale: 1;
15289             description { state: "default" 0.0;
15290                min: GENLIST_SIZE_154_INC 0;
15291                fixed: 1 0;
15292                rel1.to_x: "elm.padding.right";
15293                rel2 {
15294                   relative: 0.0 1.0;
15295                   to_x: "elm.padding.right";
15296                }
15297                align: 1.0 0.5;
15298                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;;
15299                text {
15300                   font: "SLP:style=Medium";
15301                   size: GENLIST_FONT_32_INC;
15302                   min: 0 1;
15303                   align: 1.0 0.5;
15304                   text_class: "slp_roman";
15305                }
15306             }
15307             description { state: "selected" 0.0;
15308                inherit: "default" 0.0;
15309                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15310             }
15311             GENLIST_DESCRIPTION_FLIP_ENABLED
15312          }
15313          part { name: "elm.padding.text2.left";
15314             type: RECT;
15315             mouse_events: 0;
15316             scale: 1;
15317             description { state: "default" 0.0;
15318                min: GENLIST_ICON_SMALL_SIZE 0;
15319                fixed: 1 0;
15320                rel1.to_x: "elm.text.2";
15321                rel2 {
15322                   relative: 0.0 1.0;
15323                   to_x: "elm.text.2";
15324                }
15325                visible: 0;
15326                align: 1.0 0.5;
15327             }
15328          }
15329          part { name: "elm.text.1";
15330             clip_to: "disclip";
15331             type: TEXT;
15332             mouse_events: 0;
15333             scale: 1;
15334             description { state: "default" 0.0;
15335                rel1 {
15336                   relative: 1.0 0.0;
15337                   to_x: "elm.padding.left";
15338                }
15339                rel2 {
15340                   relative: 0.0 1.0;
15341                   to_x: "elm.padding.text2.left";
15342                }
15343                align: 0.0 0.0;
15344                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15345                text {
15346                   font: "SLP:style=Roman";
15347                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15348                   min: 0 1;
15349                   align: 0.0 0.5;
15350                   text_class: "list_item";
15351                }
15352             }
15353             description { state: "selected" 0.0;
15354                inherit: "default" 0.0;
15355                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15356             }
15357             GENLIST_DESCRIPTION_FLIP_ENABLED
15358          }
15359          GENLIST_PART_FLIP
15360          GENLIST_PART_DISCLIP
15361       }
15362       programs {
15363          program { name: "go_active";
15364             signal: "elm,state,selected";
15365             source: "elm";
15366             action: STATE_SET "selected" 0.0;
15367             target: "bg_image";
15368             target: "elm.text.1";
15369             target: "elm.text.2";
15370             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15371          }
15372          program { name: "go_passive";
15373             signal: "elm,state,unselected";
15374             source: "elm";
15375             action: STATE_SET "default" 0.0;
15376             target: "bg_image";
15377             target: "elm.text.1";
15378             target: "elm.text.2";
15379             transition: LINEAR 0.1;
15380          }
15381          program { name: "go_disabled";
15382             signal: "elm,state,disabled";
15383             source: "elm";
15384             action: STATE_SET "disabled" 0.0;
15385             target: "disclip";
15386          }
15387          program { name: "go_enabled";
15388             signal: "elm,state,enabled";
15389             source: "elm";
15390             action: STATE_SET "default" 0.0;
15391             target: "disclip";
15392          }
15393          GENLIST_PROGRAM_FLIP_2TEXT
15394          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15395          //GENLIST_PROGRAM_FLIP_1TEXT
15396       }
15397    }
15398
15399    group { name: "elm/genlist/item/dialogue/1text.2icon.2/default";
15400       alias: "elm/genlist/item_odd/dialogue/1text.2icon.2/default";
15401       alias: "elm/genlist/item_compress/dialogue/1text.2icon.2/default";
15402       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon.2/default";
15403       alias: "elm/layout/dialogue/1text.2icon.2";
15404       data.item: "stacking" "above";
15405       data.item: "selectraise" "on";
15406       data.item: "texts" "elm.text";
15407       data.item: "contents" "elm.icon.1 elm.icon.2";
15408       data.item: "flips" "elm.flip.content";
15409       parts {
15410          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15411          GENLIST_PART_DIALOGUE_BG_IMAGE
15412          GENLIST_PART_BOTTOM_LINE
15413          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15414          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15415          GENLIST_PART_DIALOGUE_ITEM
15416          GENLIST_PART_DIALOGUE_RIGHT_LINE
15417          part { name: "elm.icon.1";
15418             clip_to: "disclip";
15419             type: SWALLOW;
15420             scale: 1;
15421             description { state: "default" 0.0;
15422                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15423                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15424                fixed: 1 1;
15425                rel1 {
15426                   relative: 1.0 0.0;
15427                   to_x: "elm.padding.left";
15428                }
15429                rel2 {
15430                   relative: 1.0 1.0;
15431                   to_x: "elm.padding.left";
15432                }
15433                align: 0.0 0.5;
15434             }
15435             GENLIST_DESCRIPTION_FLIP_ENABLED
15436          }
15437          part { name: "elm.padding.icon1.right";
15438             clip_to: "disclip";
15439             type: RECT;
15440             scale: 1;
15441             description { state: "default" 0.0;
15442                min: GENLIST_PADDING_16_INC 0;
15443                fixed: 1 0;
15444                rel1 {
15445                   relative: 1.0 0.0;
15446                   to_x: "elm.icon.1";
15447                }
15448                rel2.to_x: "elm.icon.1";
15449                align: 0.0 0.0;
15450                visible: 0;
15451             }
15452          }
15453          part { name: "elm.icon.2";
15454             clip_to: "disclip";
15455             type: SWALLOW;
15456             scale: 1;
15457             description { state: "default" 0.0;
15458                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15459                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15460                fixed: 1 1;
15461                rel1.to_x: "elm.padding.right";
15462                rel2 {
15463                   relative: 0.0 1.0;
15464                   to_x: "elm.padding.right";
15465                }
15466                align: 1.0 0.5;
15467             }
15468             GENLIST_DESCRIPTION_FLIP_ENABLED
15469          }
15470          part { name: "elm.padding.icon2.left";
15471             clip_to: "disclip";
15472             type: RECT;
15473             scale: 1;
15474             description { state: "default" 0.0;
15475                min: GENLIST_PADDING_16_INC 0;
15476                fixed: 1 0;
15477                rel1.to_x: "elm.icon.2";
15478                rel2 {
15479                   relative: 0.0 1.0;
15480                   to_x: "elm.icon.2";
15481                }
15482                align: 1.0 0.0;
15483                visible: 0;
15484             }
15485          }
15486          part { name: "elm.text";
15487             clip_to: "disclip";
15488             type: TEXT;
15489             mouse_events: 0;
15490             scale: 1;
15491             description { state: "default" 0.0;
15492                rel1 {
15493                   relative: 1.0 0.0;
15494                   to_x: "elm.padding.icon1.right";
15495                }
15496                rel2 {
15497                   relative: 0.0 1.0;
15498                   to_x: "elm.padding.icon2.left";
15499                }
15500                align: 0.0 0.0;
15501                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15502                text {
15503                   font: "SLP:style=Roman";
15504                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15505                   min: 0 1;
15506                   align: 0.0 0.5;
15507                   text_class: "list_item";
15508                }
15509             }
15510             description { state: "selected" 0.0;
15511                inherit: "default" 0.0;
15512                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15513             }
15514             GENLIST_DESCRIPTION_FLIP_ENABLED
15515          }
15516          GENLIST_PART_FLIP
15517          GENLIST_PART_DISCLIP
15518       }
15519       programs {
15520          program { name: "go_active";
15521             signal: "elm,state,selected";
15522             source: "elm";
15523             action: STATE_SET "selected" 0.0;
15524             target: "bg_image";
15525             target: "elm.text";
15526             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15527          }
15528          program { name: "go_passive";
15529             signal: "elm,state,unselected";
15530             source: "elm";
15531             action: STATE_SET "default" 0.0;
15532             target: "bg_image";
15533             target: "elm.text";
15534             transition: LINEAR 0.1;
15535          }
15536          program { name: "go_disabled";
15537             signal: "elm,state,disabled";
15538             source: "elm";
15539             action: STATE_SET "disabled" 0.0;
15540             target: "disclip";
15541          }
15542          program { name: "go_enabled";
15543             signal: "elm,state,enabled";
15544             source: "elm";
15545             action: STATE_SET "default" 0.0;
15546             target: "disclip";
15547          }
15548          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
15549          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15550       }
15551    }
15552
15553    group { name: "elm/genlist/item/dialogue/1text.3icon/default";
15554       alias: "elm/genlist/item_odd/dialogue/1text.3icon/default";
15555       alias: "elm/genlist/item_compress/dialogue/1text.3icon/default";
15556       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon/default";
15557       alias: "elm/layout/dialogue/1text.3icon";
15558       data.item: "stacking" "above";
15559       data.item: "selectraise" "on";
15560       data.item: "texts" "elm.text";
15561       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
15562       data.item: "flips" "elm.flip.content";
15563       parts {
15564          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15565          GENLIST_PART_DIALOGUE_BG_IMAGE
15566          GENLIST_PART_BOTTOM_LINE
15567          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15568          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15569          GENLIST_PART_DIALOGUE_ITEM
15570          GENLIST_PART_DIALOGUE_RIGHT_LINE
15571          part { name: "elm.icon.1";
15572             clip_to: "disclip";
15573             type: SWALLOW;
15574             scale: 1;
15575             description { state: "default" 0.0;
15576                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15577                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15578                fixed: 1 1;
15579                rel1 {
15580                   relative: 1.0 0.0;
15581                   to_x: "elm.padding.left";
15582                }
15583                rel2 {
15584                   relative: 1.0 1.0;
15585                   to_x: "elm.padding.left";
15586                }
15587                align: 0.0 0.5;
15588             }
15589             GENLIST_DESCRIPTION_FLIP_ENABLED
15590          }
15591          part { name: "elm.padding.icon1.right";
15592             clip_to: "disclip";
15593             type: RECT;
15594             scale: 1;
15595             description { state: "default" 0.0;
15596                min: GENLIST_PADDING_16_INC 0;
15597                fixed: 1 0;
15598                rel1 {
15599                   relative: 1.0 0.0;
15600                   to_x: "elm.icon.1";
15601                }
15602                rel2.to_x: "elm.icon.1";
15603                align: 0.0 0.0;
15604                visible: 0;
15605             }
15606          }
15607          part { name: "elm.icon.3";
15608             clip_to: "disclip";
15609             type: SWALLOW;
15610             scale: 1;
15611             description { state: "default" 0.0;
15612                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15613                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15614                fixed: 1 1;
15615                rel1.to_x: "elm.padding.right";
15616                rel2 {
15617                   relative: 0.0 1.0;
15618                   to_x: "elm.padding.right";
15619                }
15620                align: 1.0 0.5;
15621             }
15622             GENLIST_DESCRIPTION_FLIP_ENABLED
15623          }
15624          part { name: "elm.padding.icon3.left";
15625             clip_to: "disclip";
15626             type: RECT;
15627             scale: 1;
15628             description { state: "default" 0.0;
15629                min: GENLIST_PADDING_16_INC 0;
15630                fixed: 1 0;
15631                rel1.to_x: "elm.icon.3";
15632                rel2 {
15633                   relative: 0.0 1.0;
15634                   to_x: "elm.icon.3";
15635                }
15636                align: 1.0 0.0;
15637                visible: 0;
15638             }
15639          }
15640          part { name: "elm.icon.2";
15641             clip_to: "disclip";
15642             type: SWALLOW;
15643             scale: 1;
15644             description { state: "default" 0.0;
15645                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15646                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15647                fixed: 1 1;
15648                rel1.to_x: "elm.padding.icon3.left";
15649                rel2 {
15650                   relative: 0.0 1.0;
15651                   to_x: "elm.padding.icon3.left";
15652                }
15653                align: 1.0 0.5;
15654             }
15655             GENLIST_DESCRIPTION_FLIP_ENABLED
15656          }
15657          part { name: "elm.padding.icon2.left";
15658             clip_to: "disclip";
15659             type: RECT;
15660             scale: 1;
15661             description { state: "default" 0.0;
15662                min: GENLIST_PADDING_16_INC 0;
15663                fixed: 1 0;
15664                rel1.to_x: "elm.icon.2";
15665                rel2 {
15666                   relative: 0.0 1.0;
15667                   to_x: "elm.icon.2";
15668                }
15669                align: 0.0 0.0;
15670                visible: 0;
15671             }
15672          }
15673          part { name: "elm.text";
15674             clip_to: "disclip";
15675             type: TEXT;
15676             mouse_events: 0;
15677             scale: 1;
15678             description { state: "default" 0.0;
15679                rel1 {
15680                   relative: 1.0 0.0;
15681                   to_x: "elm.padding.icon1.right";
15682                }
15683                rel2 {
15684                   relative: 0.0 1.0;
15685                   to_x: "elm.padding.icon2.left";
15686                }
15687                align: 0.0 0.5;
15688                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
15689                text {
15690                   font: "SLP:style=Roman";
15691                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
15692                   min: 0 1;
15693                   align: 0.0 0.5;
15694                   text_class: "list_item";
15695                }
15696             }
15697             description { state: "selected" 0.0;
15698                inherit: "default" 0.0;
15699                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15700             }
15701             GENLIST_DESCRIPTION_FLIP_ENABLED
15702          }
15703          GENLIST_PART_FLIP
15704          GENLIST_PART_DISCLIP
15705       }
15706       programs {
15707          // signal: elm,state,%s,active
15708          //   a "check" item named %s went active
15709          // signal: elm,state,%s,passive
15710          //   a "check" item named %s went passive
15711          // default is passive
15712          program { name: "go_active";
15713             signal: "elm,state,selected";
15714             source: "elm";
15715             action: STATE_SET "selected" 0.0;
15716             target: "bg_image";
15717             target: "elm.text";
15718             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15719          }
15720          program { name: "go_passive";
15721             signal: "elm,state,unselected";
15722             source: "elm";
15723             action: STATE_SET "default" 0.0;
15724             target: "bg_image";
15725             target: "elm.text";
15726             transition: LINEAR 0.1;
15727          }
15728          program { name: "go_disabled";
15729             signal: "elm,state,disabled";
15730             source: "elm";
15731             action: STATE_SET "disabled" 0.0;
15732             target: "disclip";
15733          }
15734          program { name: "go_enabled";
15735             signal: "elm,state,enabled";
15736             source: "elm";
15737             action: STATE_SET "default" 0.0;
15738             target: "disclip";
15739          }
15740          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
15741          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15742          //GENLIST_PROGRAM_FLIP_1TEXT
15743       }
15744    }
15745
15746    /* password style 2.4.2.13 */
15747    /* on landscape mode, 4 swallow parts will be placed left-align basis with having padding on the right side. */
15748    group { name: "elm/genlist/item/dialogue/1text.4icon/default";
15749       alias: "elm/genlist/item_odd/dialogue/1text.4icon/default";
15750       alias: "elm/genlist/item_compress/dialogue/1text.4icon/default";
15751       alias: "elm/genlist/item_compress_odd/dialogue/1text.4icon/default";
15752       alias: "elm/layout/dialogue/4icon";
15753       data.item: "stacking" "above";
15754       data.item: "selectraise" "on";
15755       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
15756       data.item: "texts" "elm.text.1";
15757       images {
15758          image : "00_search_input_field_bg.png" COMP;
15759       }
15760       parts {
15761          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
15762          GENLIST_PART_DIALOGUE_BG_IMAGE
15763          GENLIST_PART_BOTTOM_LINE
15764          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
15765          GENLIST_PART_PADDING_BOTTOM( 23 )
15766          GENLIST_PART_PADDING_LEFT( 42 )
15767          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15768          GENLIST_PART_DIALOGUE_ITEM
15769          GENLIST_PART_DIALOGUE_RIGHT_LINE
15770          part { name: "elm.text.1";
15771             clip_to: "disclip";
15772             type: TEXT;
15773             mouse_events: 0;
15774             scale: 1;
15775             description { state: "default" 0.0;
15776                fixed: 1 1;
15777                rel1.relative: 42/720 10/206;
15778                rel2.relative: 703/720 58/206;
15779                color: GENLIST_DIALOGUE_FONT_PASSWORD_TITLE_COLOR_INC;
15780                text {
15781                   font: "SLP:style=Medium";
15782                   size: GENLIST_FONT_32_INC;
15783                   min: 0 0;
15784                   align: 0.0 0;
15785                   text_class: "list_item";
15786                }
15787             }
15788             description { state: "selected" 0.0;
15789                inherit: "default" 0.0;
15790                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
15791             }
15792          }
15793          part { name: "elm.icon1.bg";
15794             clip_to: "disclip";
15795             type: IMAGE;
15796             scale: 1;
15797             description { state: "default" 0.0;
15798                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15799                fixed: 1 1;
15800                rel1.relative: 146/720 126/206;
15801                rel2.relative: 146/720 126/206;
15802                image.normal: "00_search_input_field_bg.png";
15803                image.border: 5 5 5 5;
15804                image.border_scale: 1;
15805             }
15806          }
15807          part { name: "elm.icon.1";
15808             clip_to: "disclip";
15809             type: SWALLOW;
15810             scale: 1;
15811             description { state: "default" 0.0;
15812                rel1 {
15813                   to: "elm.icon1.bg";
15814                   offset: 3 3;
15815                }
15816                rel2 {
15817                   to: "elm.icon1.bg";
15818                   offset: -3 -3;
15819                }
15820                align: 0.5 0.5;
15821             }
15822          }
15823          part { name: "elm.icon2.bg";
15824             clip_to: "disclip";
15825             type: IMAGE;
15826             scale: 1;
15827             description { state: "default" 0.0;
15828                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15829                fixed: 1 1;
15830                rel1.relative: 294/720 126/206;
15831                rel2.relative: 294/720 126/206;
15832                image.normal: "00_search_input_field_bg.png";
15833                image.border: 5 5 5 5;
15834                image.border_scale: 1;
15835             }
15836          }
15837          part { name: "elm.icon.2";
15838             clip_to: "disclip";
15839             type: SWALLOW;
15840             scale: 1;
15841             description { state: "default" 0.0;
15842                rel1 {
15843                   to: "elm.icon2.bg";
15844                   offset: 3 3;
15845                }
15846                rel2 {
15847                   to: "elm.icon2.bg";
15848                   offset: -3 -3;
15849                }
15850                align: 0.5 0.5;
15851             }
15852          }
15853          part { name: "elm.icon3.bg";
15854             clip_to: "disclip";
15855             type: IMAGE;
15856             scale: 1;
15857             description { state: "default" 0.0;
15858                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15859                fixed: 1 1;
15860                rel1.relative: 442/720 126/206;
15861                rel2.relative: 442/720 126/206;
15862                image.normal: "00_search_input_field_bg.png";
15863                image.border: 5 5 5 5;
15864                image.border_scale: 1;
15865             }
15866          }
15867          part { name: "elm.icon.3";
15868             clip_to: "disclip";
15869             type: SWALLOW;
15870             scale: 1;
15871             description { state: "default" 0.0;
15872                rel1 {
15873                   to: "elm.icon3.bg";
15874                   offset: 3 3;
15875                }
15876                rel2 {
15877                   to: "elm.icon3.bg";
15878                   offset: -3 -3;
15879                }
15880                align: 0.5 0.5;
15881             }
15882          }
15883          part { name: "elm.icon4.bg";
15884             clip_to: "disclip";
15885             type: IMAGE;
15886             scale: 1;
15887             description { state: "default" 0.0;
15888                min: GENLIST_SIZE_PASSWORD_ICON GENLIST_SIZE_PASSWORD_ICON;
15889                fixed: 1 1;
15890                rel1.relative: 590/720 126/206;
15891                rel2.relative: 590/720 126/206;
15892                image.normal: "00_search_input_field_bg.png";
15893                image.border: 5 5 5 5;
15894                image.border_scale: 1;
15895             }
15896          }
15897          part { name: "elm.icon.4";
15898             clip_to: "disclip";
15899             type: SWALLOW;
15900             scale: 1;
15901             description { state: "default" 0.0;
15902                rel1 {
15903                   to: "elm.icon4.bg";
15904                   offset: 3 3;
15905                }
15906                rel2 {
15907                   to: "elm.icon4.bg";
15908                   offset: -3 -3;
15909                }
15910                align: 0.5 0.5;
15911             }
15912          }         GENLIST_PART_DISCLIP
15913       }
15914       programs {
15915          // signal: elm,state,%s,active
15916          //   a "check" item named %s went active
15917          // signal: elm,state,%s,passive
15918          //   a "check" item named %s went passive
15919          // default is passive
15920          /*program { name: "go_active";
15921             signal: "elm,state,selected";
15922             source: "elm";
15923             action: STATE_SET "selected" 0.0;
15924             target: "bg_image";
15925             target: "elm.text.1";
15926             target: "elm.text.2";
15927          }
15928          program { name: "go_passive";
15929             signal: "elm,state,unselected";
15930             source: "elm";
15931             action: STATE_SET "default" 0.0;
15932             target: "bg_image";
15933             target: "elm.text.1";
15934             target: "elm.text.2";
15935             transition: LINEAR 0.1;
15936          }*/
15937          program { name: "go_disabled";
15938             signal: "elm,state,disabled";
15939             source: "elm";
15940             action: STATE_SET "disabled" 0.0;
15941             target: "disclip";
15942          }
15943          program { name: "go_enabled";
15944             signal: "elm,state,enabled";
15945             source: "elm";
15946             action: STATE_SET "default" 0.0;
15947             target: "disclip";
15948          }
15949       }
15950    }
15951
15952    group { name: "elm/genlist/item/dialogue/3icon/default";
15953       alias: "elm/genlist/item_odd/dialogue/3icon/default";
15954       alias: "elm/genlist/item_compress/dialogue/3icon/default";
15955       alias: "elm/genlist/item_compress_odd/dialogue/3icon/default";
15956       alias: "elm/layout/dialogue/3icon";
15957       data.item: "stacking" "above";
15958       data.item: "selectraise" "on";
15959       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
15960       parts {
15961          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15962          GENLIST_PART_DIALOGUE_BG_IMAGE
15963          GENLIST_PART_BOTTOM_LINE
15964          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15965          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15966          GENLIST_PART_DIALOGUE_ITEM
15967          GENLIST_PART_DIALOGUE_RIGHT_LINE
15968          part { name: "elm.icon.1";
15969             clip_to: "disclip";
15970             type: SWALLOW;
15971             scale: 1;
15972             description { state: "default" 0.0;
15973                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
15974                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
15975                fixed: 1 1;
15976                rel1 {
15977                   relative: 1.0 0.0;
15978                   to_x: "elm.padding.left";
15979                }
15980                rel2 {
15981                   relative: 1.0 1.0;
15982                   to_x: "elm.padding.left";
15983                }
15984                align: 0.0 0.5;
15985             }
15986             GENLIST_DESCRIPTION_FLIP_ENABLED
15987          }
15988          part { name: "elm.padding.icon1.right";
15989             clip_to: "disclip";
15990             type: RECT;
15991             scale: 1;
15992             description { state: "default" 0.0;
15993                min: GENLIST_PADDING_16_INC 0;
15994                fixed: 1 0;
15995                rel1 {
15996                   relative: 1.0 0.0;
15997                   to_x: "elm.icon.1";
15998                }
15999                rel2.to_x: "elm.icon.1";
16000                align: 0.0 0.0;
16001                visible: 0;
16002             }
16003          }
16004          part { name: "elm.icon.3";
16005             clip_to: "disclip";
16006             type: SWALLOW;
16007             scale: 1;
16008             description { state: "default" 0.0;
16009                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16010                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16011                fixed: 1 1;
16012                rel1.to_x: "elm.padding.right";
16013                rel2 {
16014                   relative: 0.0 1.0;
16015                   to_x: "elm.padding.right";
16016                }
16017                align: 1.0 0.5;
16018             }
16019             GENLIST_DESCRIPTION_FLIP_ENABLED
16020          }
16021          part { name: "elm.padding.icon3.left";
16022             clip_to: "disclip";
16023             type: RECT;
16024             scale: 1;
16025             description { state: "default" 0.0;
16026                min: GENLIST_PADDING_16_INC 0;
16027                fixed: 1 0;
16028                rel1.to_x: "elm.icon.3";
16029                rel2 {
16030                   relative: 0.0 1.0;
16031                   to_x: "elm.icon.3";
16032                }
16033                align: 1.0 0.0;
16034                visible: 0;
16035             }
16036          }
16037          part { name: "elm.icon.2";
16038             clip_to: "disclip";
16039             type: SWALLOW;
16040             scale: 1;
16041             description { state: "default" 0.0;
16042                rel1 {
16043                   relative: 1.0 0.0;
16044                   to_x: "elm.padding.icon1.right";
16045                }
16046                rel2 {
16047                   relative: 0.0 1.0;
16048                   to_x: "elm.padding.icon3.left";
16049                }
16050                align: 0.0 0.5;
16051             }
16052             GENLIST_DESCRIPTION_FLIP_ENABLED
16053          }
16054          GENLIST_PART_DISCLIP
16055       }
16056       programs {
16057          // signal: elm,state,%s,active
16058          //   a "check" item named %s went active
16059          // signal: elm,state,%s,passive
16060          //   a "check" item named %s went passive
16061          // default is passive
16062          program { name: "go_disabled";
16063             signal: "elm,state,disabled";
16064             source: "elm";
16065             action: STATE_SET "disabled" 0.0;
16066             target: "disclip";
16067          }
16068          program { name: "go_enabled";
16069             signal: "elm,state,enabled";
16070             source: "elm";
16071             action: STATE_SET "default" 0.0;
16072             target: "disclip";
16073          }
16074       }
16075    }
16076
16077    group { name: "elm/genlist/item/dialogue/2text.1icon.4/default";
16078       alias: "elm/genlist/item_odd/dialogue/2text.1icon.4/default";
16079       alias: "elm/genlist/item_compress/dialogue/2text.1icon.4/default";
16080       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.4/default";
16081       alias: "elm/layout/dialogue/2text.1icon.4";
16082       data.item: "stacking" "above";
16083       data.item: "selectraise" "on";
16084       data.item: "texts" "elm.text.1 elm.text.2";
16085       data.item: "contents" "elm.icon";
16086       data.item: "flips" "elm.flip.content";
16087       parts {
16088          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16089          GENLIST_PART_DIALOGUE_BG_IMAGE
16090          GENLIST_PART_BOTTOM_LINE
16091          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_11_INC )
16092          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
16093          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16094          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16095          GENLIST_PART_DIALOGUE_ITEM
16096          GENLIST_PART_DIALOGUE_RIGHT_LINE
16097          part { name: "elm.text.2";
16098             clip_to: "disclip";
16099             type: TEXT;
16100             mouse_events: 0;
16101             scale: 1;
16102             description { state: "default" 0.0;
16103                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
16104                fixed: 1 1;
16105                rel1 {
16106                   relative: 0.0 1.0;
16107                   to_x: "elm.padding.right";
16108                   to_y: "elm.padding.top";
16109                }
16110                rel2 {
16111                   relative: 0.0 1.0;
16112                   to_x: "elm.padding.right";
16113                   to_y: "elm.padding.top";
16114                }
16115                align: 1.0 0.0;
16116                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
16117                text {
16118                   font: "SLP:style=Medium";
16119                   size: GENLIST_FONT_32_INC;
16120                   min: 0 1;
16121                   align: 1.0 0.5;
16122                   text_class: "slp_medium";
16123                }
16124             }
16125             description { state: "selected" 0.0;
16126                inherit: "default" 0.0;
16127                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
16128             }
16129             GENLIST_DESCRIPTION_FLIP_ENABLED
16130          }
16131          part { name: "elm.padding.text2.left";
16132             clip_to: "disclip";
16133             type: RECT;
16134             mouse_events: 0;
16135             scale: 1;
16136             description { state: "default" 0.0;
16137                min: GENLIST_ICON_SMALL_SIZE 0;
16138                fixed: 1 0;
16139                rel1.to_x: "elm.text.2";
16140                rel2 {
16141                   relative: 0.0 1.0;
16142                   to_x: "elm.text.2";
16143                }
16144                align: 1.0 0.5;
16145                visible: 0;
16146             }
16147          }
16148          part { name: "elm.text.1";
16149             clip_to: "disclip";
16150             type: TEXT;
16151             mouse_events: 0;
16152             scale: 1;
16153             description { state: "default" 0.0;
16154                rel1 {
16155                   relative: 1.0 1.0;
16156                   to_x: "elm.padding.left";
16157                   to_y: "elm.padding.top";
16158                }
16159                rel2 {
16160                   relative: 0.0 1.0;
16161                   to_x: "elm.padding.text2.left";
16162                   to_y: "elm.text.2";
16163                }
16164                align: 0.0 0.5;
16165                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16166                text {
16167                   font: "SLP:style=Roman";
16168                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16169                   min: 0 1;
16170                   align: 0.0 0.5;
16171                   text_class: "list_item";
16172                }
16173             }
16174             description { state: "selected" 0.0;
16175                inherit: "default" 0.0;
16176                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
16177             }
16178             GENLIST_DESCRIPTION_FLIP_ENABLED
16179          }
16180          part { name: "elm.icon";
16181             clip_to: "disclip";
16182             type: SWALLOW;
16183             scale: 1;
16184             description { state: "default" 0.0;
16185                min: 0 GENLIST_SIZE_16_INC;
16186                fixed: 0 1;
16187                rel1 {
16188                   relative: 1.0 0.0;
16189                   to_x: "elm.padding.left";
16190                   to_y: "elm.padding.bottom";
16191                }
16192                rel2 {
16193                   relative: 0.0 0.0;
16194                   to_x: "elm.padding.right";
16195                   to_y: "elm.padding.bottom";
16196                }
16197                align: 0.0 1.0;
16198             }
16199             GENLIST_DESCRIPTION_FLIP_ENABLED
16200          }
16201          GENLIST_PART_FLIP
16202          GENLIST_PART_DISCLIP
16203       }
16204       programs {
16205          // signal: elm,state,%s,active
16206          //   a "check" item named %s went active
16207          // signal: elm,state,%s,passive
16208          //   a "check" item named %s went passive
16209          // default is passive
16210          program { name: "go_active";
16211             signal: "elm,state,selected";
16212             source: "elm";
16213             action: STATE_SET "selected" 0.0;
16214             target: "bg_image";
16215             target: "elm.text.1";
16216             target: "elm.text.2";
16217             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16218          }
16219          program { name: "go_passive";
16220             signal: "elm,state,unselected";
16221             source: "elm";
16222             action: STATE_SET "default" 0.0;
16223             target: "bg_image";
16224             target: "elm.text.1";
16225             target: "elm.text.2";
16226             transition: LINEAR 0.1;
16227          }
16228          program { name: "go_disabled";
16229             signal: "elm,state,disabled";
16230             source: "elm";
16231             action: STATE_SET "disabled" 0.0;
16232             target: "disclip";
16233          }
16234          program { name: "go_enabled";
16235             signal: "elm,state,enabled";
16236             source: "elm";
16237             action: STATE_SET "default" 0.0;
16238             target: "disclip";
16239          }
16240          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
16241          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16242       }
16243    }
16244
16245    group { name: "elm/genlist/item/dialogue/1title.1text/default";
16246       alias: "elm/genlist/item_odd/dialogue/1title.1text/default";
16247       alias: "elm/genlist/item_compress/dialogue/1title.1text/default";
16248       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text/default";
16249       alias: "elm/genlist/item/dialogue.1title.1text/default";
16250       alias: "elm/genlist/item_odd/dialogue.1title.1text/default";
16251       alias: "elm/genlist/item_compress/dialogue.1title.1text/default";
16252       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text/default";
16253       alias: "elm/layout/dialogue/1title.1text";
16254       data.item: "stacking" "above";
16255       data.item: "selectraise" "on";
16256       data.item: "texts" "elm.title elm.text";
16257       data.item: "flips" "elm.flip.content";
16258       parts {
16259          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16260          GENLIST_PART_DIALOGUE_BG_IMAGE
16261          GENLIST_PART_BOTTOM_LINE
16262          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16263          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16264          GENLIST_PART_DIALOGUE_ITEM
16265          GENLIST_PART_DIALOGUE_RIGHT_LINE
16266          part { name: "elm.title";
16267             clip_to: "disclip";
16268             type: TEXT;
16269             mouse_events: 0;
16270             scale: 1;
16271             description { state: "default" 0.0;
16272                min: GENLIST_SIZE_163_INC 0;
16273                fixed: 1 0;
16274                rel1 {
16275                   relative: 1.0 0.0;
16276                   to_x: "elm.padding.left";
16277                }
16278                rel2.to_x: "elm.padding.left";
16279                align: 0.0 0.5;
16280                color: GENLIST_MULTILINE_TEXT_COLOR;
16281                text {
16282                   font: "SLP:style=Medium";
16283                   size: GENLIST_MULTILINE_TEXT_SIZE;
16284                   min: 0 1;
16285                   align: 0.0 0.5;
16286                   text_class: "slp_roman";
16287                }
16288             }
16289          }
16290          part { name: "vertical_line";
16291             type: RECT;
16292             mouse_events: 0;
16293             description { state: "default" 0.0;
16294                min: 1 0;
16295                fixed: 1 0;
16296                rel1 {
16297                   relative: 1.0 0.0;
16298                   to_x: "elm.title";
16299                }
16300                rel2.to_x: "elm.title";
16301                align: 0.0 0.5;
16302                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16303             }
16304          }
16305          part { name: "elm.padding.text.left";
16306             clip_to: "disclip";
16307             type: RECT;
16308             mouse_events: 0;
16309             scale: 1;
16310             description { state: "default" 0.0;
16311                min: GENLIST_PADDING_16_INC 0;
16312                fixed: 1 0;
16313                rel1 {
16314                    relative: 1.0 0.0;
16315                    to_x: "vertical_line";
16316                }
16317                rel2.to_x: "vertical_line";
16318                align: 0.0 0.5;
16319                visible: 0;
16320             }
16321          }
16322          part { name: "elm.text";
16323             clip_to: "disclip";
16324             type: TEXT;
16325             mouse_events: 0;
16326             scale: 1;
16327             description { state: "default" 0.0;
16328                rel1 {
16329                   relative: 1.0 0.0;
16330                   to_x: "elm.padding.text.left";
16331                }
16332                rel2 {
16333                   relative: 0.0 1.0;
16334                   to_x: "elm.padding.right";
16335                }
16336                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16337                text {
16338                   font: "SLP:style=Roman";
16339                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16340                   min: 0 1;
16341                   align: 0.0 0.5;
16342                   text_class: "list_item";
16343                }
16344             }
16345             GENLIST_DESCRIPTION_FLIP_ENABLED
16346          }
16347          part { name: "elm.flip.content";
16348             clip_to: "disclip";
16349             type: SWALLOW;
16350             mouse_events: 1;
16351             scale: 1;
16352             description { state: "default" 0.0;
16353                fixed: 1 1;
16354                rel1 {
16355                   relative: 0.0 0.5;
16356                   to_x: "elm.text";
16357                }
16358                rel2 {
16359                   relative: 0.0 0.5;
16360                   to_x: "elm.padding.right";
16361                }
16362                visible: 0;
16363             }
16364             description { state: "flip_enabled" 0.0;
16365                inherit: "default" 0.0;
16366                visible: 1;
16367             }
16368          }
16369          GENLIST_PART_DISCLIP
16370       }
16371       programs {
16372          // signal: elm,state,%s,active
16373          //   a "check" item named %s went active
16374          // signal: elm,state,%s,passive
16375          //   a "check" item named %s went passive
16376          // default is passive
16377          /*program { name: "go_active";
16378             signal: "elm,state,selected";
16379             source: "elm";
16380             action: STATE_SET "selected" 0.0;
16381             target: "elm.text";
16382          }
16383          program { name: "go_passive";
16384             signal: "elm,state,unselected";
16385             source: "elm";
16386             action: STATE_SET "default" 0.0;
16387             target: "elm.text";
16388             transition: LINEAR 0.1;
16389          }*/
16390          program { name: "go_disabled";
16391             signal: "elm,state,disabled";
16392             source: "elm";
16393             action: STATE_SET "disabled" 0.0;
16394             target: "disclip";
16395          }
16396          program { name: "go_enabled";
16397             signal: "elm,state,enabled";
16398             source: "elm";
16399             action: STATE_SET "default" 0.0;
16400             target: "disclip";
16401          }
16402          //GENLIST_PROGRAM_FLIP_1TEXT
16403       }
16404    }
16405
16406    group { name: "elm/genlist/item/dialogue/1title.1text.3/default";
16407       alias: "elm/genlist/item_odd/dialogue/1title.1text.3/default";
16408       alias: "elm/genlist/item_compress/dialogue/1title.1text.3/default";
16409       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.3/default";
16410       alias: "elm/genlist/item/dialogue.1title.1text.3/default";
16411       alias: "elm/genlist/item_odd/dialogue.1title.1text.3/default";
16412       alias: "elm/genlist/item_compress/dialogue.1title.1text.3/default";
16413       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.3/default";
16414       alias: "elm/layout/dialogue/1title.1text.3";
16415       data.item: "stacking" "above";
16416       data.item: "selectraise" "on";
16417       data.item: "texts" "elm.title elm.text";
16418       data.item: "flips" "elm.flip.content.title elm.flip.content";
16419       parts {
16420          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16421          GENLIST_PART_DIALOGUE_BG_IMAGE
16422          GENLIST_PART_BOTTOM_LINE
16423          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16424          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16425          GENLIST_PART_DIALOGUE_ITEM
16426          GENLIST_PART_DIALOGUE_RIGHT_LINE
16427          part { name: "elm.title";
16428             clip_to: "disclip";
16429             type: TEXT;
16430             mouse_events: 0;
16431             scale: 1;
16432             description { state: "default" 0.0;
16433                min: GENLIST_SIZE_163_INC 0;
16434                fixed: 1 0;
16435                rel1 {
16436                   relative: 1.0 0.0;
16437                   to_x: "elm.padding.left";
16438                }
16439                rel2.to_x: "elm.padding.left";
16440                align: 0.0 0.5;
16441                color: GENLIST_MULTILINE_TEXT_COLOR;
16442                text {
16443                   font: "SLP:style=Medium";
16444                   size: GENLIST_MULTILINE_TEXT_SIZE;
16445                   min: 0 1;
16446                   align: 0.0 0.5;
16447                   text_class: "slp_medium";
16448                }
16449             }
16450             GENLIST_DESCRIPTION_FLIP_ENABLED
16451          }
16452          part { name: "elm.flip.content.title";
16453             clip_to: "disclip";
16454             type: SWALLOW;
16455             description { state: "default" 0.0;
16456                visible: 0;
16457                fixed: 1 1;
16458                rel1.to: "elm.title";
16459                rel2.to: "elm.title";
16460             }
16461             description { state: "flip_enabled" 0.0;
16462                inherit: "default" 0.0;
16463                visible: 1;
16464             }
16465          }
16466          part { name: "vertical_line";
16467             type: RECT;
16468             mouse_events: 0;
16469             description { state: "default" 0.0;
16470                min: 1 0;
16471                fixed: 1 0;
16472                rel1 {
16473                   relative: 1.0 0.0;
16474                   to_x: "elm.title";
16475                }
16476                rel2.to_x: "elm.title";
16477                align: 0.0 0.5;
16478                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16479             }
16480          }
16481          part { name: "elm.padding.text.left";
16482             clip_to: "disclip";
16483             type: RECT;
16484             mouse_events: 0;
16485             scale: 1;
16486             description { state: "default" 0.0;
16487                min: GENLIST_PADDING_16_INC 0;
16488                fixed: 1 0;
16489                rel1 {
16490                    relative: 1.0 0.0;
16491                    to_x: "vertical_line";
16492                }
16493                rel2.to_x: "vertical_line";
16494                align: 0.0 0.5;
16495                visible: 0;
16496             }
16497          }
16498          part { name: "elm.text";
16499             clip_to: "disclip";
16500             type: TEXT;
16501             mouse_events: 0;
16502             scale: 1;
16503             description { state: "default" 0.0;
16504                rel1 {
16505                   relative: 1.0 0.0;
16506                   to_x: "elm.padding.text.left";
16507                }
16508                rel2 {
16509                   relative: 0.0 1.0;
16510                   to_x: "elm.padding.right";
16511                }
16512                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16513                text {
16514                   font: "SLP:style=Roman";
16515                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16516                   min: 0 1;
16517                   align: 0.0 0.5;
16518                   text_class: "list_item";
16519                }
16520             }
16521             GENLIST_DESCRIPTION_FLIP_ENABLED
16522          }
16523          part { name: "elm.flip.content";
16524             clip_to: "disclip";
16525             type: SWALLOW;
16526             mouse_events: 1;
16527             scale: 1;
16528             description { state: "default" 0.0;
16529                fixed: 1 1;
16530                rel1 {
16531                   relative: 0.0 0.5;
16532                   to_x: "elm.text";
16533                }
16534                rel2 {
16535                   relative: 0.0 0.5;
16536                   to_x: "elm.padding.right";
16537                }
16538                visible: 0;
16539             }
16540             description { state: "flip_enabled" 0.0;
16541                inherit: "default" 0.0;
16542                visible: 1;
16543             }
16544          }
16545          GENLIST_PART_DISCLIP
16546       }
16547       programs {
16548          // signal: elm,state,%s,active
16549          //   a "check" item named %s went active
16550          // signal: elm,state,%s,passive
16551          //   a "check" item named %s went passive
16552          // default is passive
16553          /*program { name: "go_active";
16554             signal: "elm,state,selected";
16555             source: "elm";
16556             action: STATE_SET "selected" 0.0;
16557             target: "elm.text";
16558          }
16559          program { name: "go_passive";
16560             signal: "elm,state,unselected";
16561             source: "elm";
16562             action: STATE_SET "default" 0.0;
16563             target: "elm.text";
16564             transition: LINEAR 0.1;
16565          }*/
16566          program { name: "go_disabled";
16567             signal: "elm,state,disabled";
16568             source: "elm";
16569             action: STATE_SET "disabled" 0.0;
16570             target: "disclip";
16571          }
16572          program { name: "go_enabled";
16573             signal: "elm,state,enabled";
16574             source: "elm";
16575             action: STATE_SET "default" 0.0;
16576             target: "disclip";
16577          }
16578          program { name: "flip_enabled";
16579             signal: "elm,state,flip,enabled";
16580             source: "elm";
16581             action: STATE_SET "flip_enabled" 0.0;
16582             target: "elm.title";
16583             target: "elm.text";
16584             target: "elm.flip.content.title";
16585             target: "elm.flip.content";
16586          }
16587          program { name: "flip_disabled";
16588             signal: "elm,state,flip,disabled";
16589             source: "elm";
16590             action: STATE_SET "default" 0.0;
16591             target: "elm.title";
16592             target: "elm.text";
16593             target: "elm.flip.content.title";
16594             target: "elm.flip.content";
16595          }
16596       }
16597    }
16598
16599    group { name: "elm/genlist/item/dialogue/1title.1text.1icon/default";
16600       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon/default";
16601       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon/default";
16602       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon/default";
16603       alias: "elm/layout/dialogue/1title.1text.1icon";
16604       data.item: "stacking" "above";
16605       data.item: "selectraise" "on";
16606       data.item: "texts" "elm.title elm.text";
16607       data.item: "contents" "elm.icon";
16608       data.item: "flips" "elm.flip.content";
16609       parts {
16610          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16611          GENLIST_PART_DIALOGUE_BG_IMAGE
16612          GENLIST_PART_BOTTOM_LINE
16613          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16614          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16615          GENLIST_PART_DIALOGUE_ITEM
16616          GENLIST_PART_DIALOGUE_RIGHT_LINE
16617          part { name: "elm.title";
16618             clip_to: "disclip";
16619             type: TEXT;
16620             mouse_events: 0;
16621             scale: 1;
16622             description { state: "default" 0.0;
16623                min: GENLIST_SIZE_163_INC 0;
16624                fixed: 1 0;
16625                rel1 {
16626                   relative: 1.0 0.0;
16627                   to_x: "elm.padding.left";
16628                }
16629                rel2.to_x: "elm.padding.left";
16630                align: 0.0 0.5;
16631                color: GENLIST_MULTILINE_TEXT_COLOR;
16632                text {
16633                   font: "SLP:style=Medium";
16634                   size: GENLIST_MULTILINE_TEXT_SIZE;
16635                   min: 0 1;
16636                   align: 0.0 0.5;
16637                   text_class: "slp_medium";
16638                }
16639             }
16640          }
16641          part { name: "vertical_line";
16642             type: RECT;
16643             mouse_events: 0;
16644             description { state: "default" 0.0;
16645                min: 1 0;
16646                fixed: 1 0;
16647                rel1 {
16648                   relative: 1.0 0.0;
16649                   to_x: "elm.title";
16650                }
16651                rel2.to_x: "elm.title";
16652                align: 0.0 0.5;
16653                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16654             }
16655          }
16656          part { name: "elm.padding.text.left";
16657             clip_to: "disclip";
16658             type: RECT;
16659             mouse_events: 0;
16660             scale: 1;
16661             description { state: "default" 0.0;
16662                min: GENLIST_PADDING_16_INC 0;
16663                fixed: 1 0;
16664                rel1 {
16665                    relative: 1.0 0.0;
16666                    to_x: "vertical_line";
16667                }
16668                rel2.to_x: "vertical_line";
16669                align: 0.0 0.5;
16670                visible: 0;
16671             }
16672          }
16673          part { name: "elm.icon";
16674            clip_to: "disclip";
16675             type: SWALLOW;
16676             mouse_events: 0;
16677             scale: 1;
16678             description { state: "default" 0.0;
16679                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16680                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16681                fixed: 1 1;
16682                rel1.to_x: "elm.padding.right";
16683                rel2 {
16684                   relative: 0.0 1.0;
16685                   to_x: "elm.padding.right";
16686                }
16687                align: 1.0 0.5;
16688             }
16689          }
16690          part { name: "elm.padding.icon.left";
16691             clip_to: "disclip";
16692             type: RECT;
16693             mouse_events: 0;
16694             scale: 1;
16695             description { state: "default" 0.0;
16696                min: GENLIST_PADDING_16_INC 0;
16697                fixed: 1 0;
16698                rel1.to_x: "elm.icon";
16699                rel2 {
16700                    relative: 0.0 1.0;
16701                    to_x: "elm.icon";
16702                }
16703                rel2.to_x: "elm.icon";
16704                align: 1.0 0.5;
16705                visible: 0;
16706             }
16707          }
16708          part { name: "elm.text";
16709             clip_to: "disclip";
16710             type: TEXT;
16711             mouse_events: 0;
16712             scale: 1;
16713             description { state: "default" 0.0;
16714                rel1 {
16715                   relative: 1.0 0.0;
16716                   to_x: "elm.padding.text.left";
16717                }
16718                rel2 {
16719                   relative: 0.0 1.0;
16720                   to_x: "elm.padding.icon.left";
16721                }
16722                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
16723                text {
16724                   font: "SLP:style=Roman";
16725                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16726                   min: 0 1;
16727                   align: 0.0 0.5;
16728                   text_class: "list_item";
16729                }
16730             }
16731             GENLIST_DESCRIPTION_FLIP_ENABLED
16732          }
16733          part { name: "elm.flip.content";
16734             clip_to: "disclip";
16735             type: SWALLOW;
16736             mouse_events: 1;
16737             scale: 1;
16738             description { state: "default" 0.0;
16739                fixed: 1 1;
16740                rel1 {
16741                   relative: 0.0 0.5;
16742                   to_x: "elm.text";
16743                }
16744                rel2 {
16745                   relative: 0.0 0.5;
16746                   to_x: "elm.padding.right";
16747                }
16748                visible: 0;
16749             }
16750             description { state: "flip_enabled" 0.0;
16751                inherit: "default" 0.0;
16752                visible: 1;
16753             }
16754          }
16755          GENLIST_PART_DISCLIP
16756       }
16757       programs {
16758          // signal: elm,state,%s,active
16759          //   a "check" item named %s went active
16760          // signal: elm,state,%s,passive
16761          //   a "check" item named %s went passive
16762          // default is passive
16763          /*program { name: "go_active";
16764             signal: "elm,state,selected";
16765             source: "elm";
16766             action: STATE_SET "selected" 0.0;
16767             target: "elm.text";
16768          }
16769          program { name: "go_passive";
16770             signal: "elm,state,unselected";
16771             source: "elm";
16772             action: STATE_SET "default" 0.0;
16773             target: "elm.text";
16774             transition: LINEAR 0.1;
16775          }*/
16776          program { name: "go_disabled";
16777             signal: "elm,state,disabled";
16778             source: "elm";
16779             action: STATE_SET "disabled" 0.0;
16780             target: "disclip";
16781          }
16782          program { name: "go_enabled";
16783             signal: "elm,state,enabled";
16784             source: "elm";
16785             action: STATE_SET "default" 0.0;
16786             target: "disclip";
16787          }
16788          //GENLIST_PROGRAM_FLIP_1TEXT
16789       }
16790    }
16791
16792    group { name: "elm/genlist/item/dialogue/1title.1text.1icon.2/default";
16793       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon.2/default";
16794       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon.2/default";
16795       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon.2/default";
16796       alias: "elm/layout/dialogue/1title.1text.1icon.2";
16797       data.item: "stacking" "above";
16798       data.item: "selectraise" "on";
16799       data.item: "texts" "elm.title elm.text";
16800       data.item: "contents" "elm.icon";
16801       data.item: "flips" "elm.flip.content.title elm.flip.content";
16802       parts {
16803          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16804          GENLIST_PART_DIALOGUE_BG_IMAGE
16805          GENLIST_PART_BOTTOM_LINE
16806          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16807          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16808          GENLIST_PART_DIALOGUE_ITEM
16809          GENLIST_PART_DIALOGUE_RIGHT_LINE
16810          part { name: "elm.title";
16811             clip_to: "disclip";
16812             type: TEXT;
16813             mouse_events: 0;
16814             scale: 1;
16815             description { state: "default" 0.0;
16816                min: GENLIST_SIZE_163_INC 0;
16817                fixed: 1 0;
16818                rel1 {
16819                   relative: 1.0 0.0;
16820                   to_x: "elm.padding.left";
16821                }
16822                rel2.to_x: "elm.padding.left";
16823                align: 0.0 0.5;
16824                color: GENLIST_MULTILINE_TEXT_COLOR;
16825                text {
16826                   font: "SLP:style=Medium";
16827                   size: GENLIST_MULTILINE_TEXT_SIZE;
16828                   min: 0 1;
16829                   align: 0.0 0.5;
16830                   text_class: "slp_medium";
16831                }
16832             }
16833             GENLIST_DESCRIPTION_FLIP_ENABLED
16834          }
16835          part { name: "elm.flip.content.title";
16836             clip_to: "disclip";
16837             type: SWALLOW;
16838             description { state: "default" 0.0;
16839                visible: 0;
16840                fixed: 1 1;
16841                rel1.to: "elm.title";
16842                rel2.to: "elm.title";
16843             }
16844             description { state: "flip_enabled" 0.0;
16845                inherit: "default" 0.0;
16846                visible: 1;
16847             }
16848          }
16849          part { name: "vertical_line";
16850             type: RECT;
16851             mouse_events: 0;
16852             description { state: "default" 0.0;
16853                min: 1 0;
16854                fixed: 1 0;
16855                rel1 {
16856                   relative: 1.0 0.0;
16857                   to_x: "elm.title";
16858                }
16859                rel2.to_x: "elm.title";
16860                align: 0.0 0.5;
16861                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16862             }
16863          }
16864          part { name: "elm.padding.text.left";
16865             clip_to: "disclip";
16866             type: RECT;
16867             mouse_events: 0;
16868             scale: 1;
16869             description { state: "default" 0.0;
16870                min: GENLIST_PADDING_16_INC 0;
16871                fixed: 1 0;
16872                rel1 {
16873                    relative: 1.0 0.0;
16874                    to_x: "vertical_line";
16875                }
16876                rel2.to_x: "vertical_line";
16877                align: 0.0 0.5;
16878                visible: 0;
16879             }
16880          }
16881          part { name: "elm.icon";
16882            clip_to: "disclip";
16883             type: SWALLOW;
16884             mouse_events: 0;
16885             scale: 1;
16886             description { state: "default" 0.0;
16887                min: 0 0;
16888                max: 0 0;
16889                rel1.to_x: "elm.padding.right";
16890                rel2 {
16891                   relative: 0.0 1.0;
16892                   to_x: "elm.padding.right";
16893                }
16894                align: 1.0 0.5;
16895                visible: 0;
16896             }
16897             description { state: "contact_default_number_enabled" 0.0;
16898                inherit: "default" 0.0;
16899                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16900                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
16901                visible: 1;
16902             }
16903          }
16904          part { name: "elm.padding.icon.left";
16905             clip_to: "disclip";
16906             type: RECT;
16907             mouse_events: 0;
16908             scale: 1;
16909             description { state: "default" 0.0;
16910                min: 0 0;
16911                fixed: 1 0;
16912                rel1.to_x: "elm.icon";
16913                rel2 {
16914                    relative: 0.0 1.0;
16915                    to_x: "elm.icon";
16916                }
16917                rel2.to_x: "elm.icon";
16918                align: 1.0 0.5;
16919                visible: 0;
16920             }
16921             description { state: "contact_default_number_enabled" 0.0;
16922                inherit: "default" 0.0;
16923                min: GENLIST_PADDING_16_INC 0;
16924             }
16925          }
16926          part { name: "elm.text";
16927             clip_to: "disclip";
16928             type: TEXT;
16929             mouse_events: 0;
16930             scale: 1;
16931             description { state: "default" 0.0;
16932                rel1 {
16933                   relative: 1.0 0.0;
16934                   to_x: "elm.padding.text.left";
16935                }
16936                rel2 {
16937                   relative: 0.0 1.0;
16938                   to_x: "elm.padding.icon.left";
16939                }
16940                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
16941                text {
16942                   font: "SLP:style=Roman";
16943                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
16944                   min: 0 1;
16945                   align: 0.0 0.5;
16946                   text_class: "list_item";
16947                }
16948             }
16949             description { state: "contact_default_number_enabled" 0.0;
16950                inherit: "default" 0.0;
16951                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
16952             }
16953             GENLIST_DESCRIPTION_FLIP_ENABLED
16954          }
16955          part { name: "elm.flip.content";
16956             clip_to: "disclip";
16957             type: SWALLOW;
16958             mouse_events: 1;
16959             scale: 1;
16960             description { state: "default" 0.0;
16961                fixed: 1 1;
16962                rel1 {
16963                   relative: 0.0 0.5;
16964                   to_x: "elm.text";
16965                }
16966                rel2 {
16967                   relative: 1.0 0.5;
16968                   to_x: "elm.padding.icon.left";
16969                }
16970                visible: 0;
16971             }
16972             description { state: "flip_enabled" 0.0;
16973                inherit: "default" 0.0;
16974                visible: 1;
16975             }
16976          }
16977          GENLIST_PART_DISCLIP
16978       }
16979       programs {
16980          // signal: elm,state,%s,active
16981          //   a "check" item named %s went active
16982          // signal: elm,state,%s,passive
16983          //   a "check" item named %s went passive
16984          // default is passive
16985          /*program { name: "go_active";
16986             signal: "elm,state,selected";
16987             source: "elm";
16988             action: STATE_SET "selected" 0.0;
16989             target: "elm.text";
16990          }
16991          program { name: "go_passive";
16992             signal: "elm,state,unselected";
16993             source: "elm";
16994             action: STATE_SET "default" 0.0;
16995             target: "elm.text";
16996             transition: LINEAR 0.1;
16997          }*/
16998          program { name: "go_disabled";
16999             signal: "elm,state,disabled";
17000             source: "elm";
17001             action: STATE_SET "disabled" 0.0;
17002             target: "disclip";
17003          }
17004          program { name: "go_enabled";
17005             signal: "elm,state,enabled";
17006             source: "elm";
17007             action: STATE_SET "default" 0.0;
17008             target: "disclip";
17009          }
17010          program { name: "flip_enabled";
17011             signal: "elm,state,flip,enabled";
17012             source: "elm";
17013             action: STATE_SET "flip_enabled" 0.0;
17014             target: "elm.title";
17015             target: "elm.text";
17016             target: "elm.flip.content.title";
17017             target: "elm.flip.content";
17018          }
17019          program { name: "flip_disabled";
17020             signal: "elm,state,flip,disabled";
17021             source: "elm";
17022             action: STATE_SET "default" 0.0;
17023             target: "elm.title";
17024             target: "elm.text";
17025             target: "elm.flip.content.title";
17026             target: "elm.flip.content";
17027          }
17028          program { name: "contact_default_number_enabled";
17029             signal: "elm,state,contact,default_number,enabled";
17030             source: "elm";
17031             action: STATE_SET "contact_default_number_enabled" 0.0;
17032             target: "elm.icon";
17033             target: "elm.padding.icon.left";
17034             target: "elm.text";
17035          }
17036          program { name: "contact_default_number_disabled";
17037             signal: "elm,state,contact,default_number,disabled";
17038             source: "elm";
17039             action: STATE_SET "default" 0.0;
17040             target: "elm.icon";
17041             target: "elm.padding.icon.left";
17042             target: "elm.text";
17043          }
17044       }
17045    }
17046
17047    group { name: "elm/genlist/item/dialogue/2text.4/default";
17048       alias: "elm/genlist/item_odd/dialogue/2text.4/default";
17049       alias: "elm/genlist/item_compress/dialogue/2text.4/default";
17050       alias: "elm/genlist/item_compress_odd/dialogue/2text.4/default";
17051       alias: "elm/layout/dialogue/2text.4";
17052       data.item: "stacking" "above";
17053       data.item: "selectraise" "on";
17054       data.item: "texts" "elm.text.1 elm.text.2";
17055       data.item: "flips" "elm.flip.content";
17056       parts {
17057          GENLIST_PART_BASE( GENLIST_HEIGHT_97_INC )
17058          GENLIST_PART_DIALOGUE_BG_IMAGE
17059          GENLIST_PART_BOTTOM_LINE
17060          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
17061          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17062          GENLIST_PART_DIALOGUE_ITEM
17063          GENLIST_PART_DIALOGUE_RIGHT_LINE
17064          part { name: "elm.text.2";
17065             clip_to: "disclip";
17066             type: TEXT;
17067             mouse_events: 0;
17068             scale: 1;
17069             description { state: "default" 0.0;
17070                min: GENLIST_SIZE_206_INC 0;
17071                fixed: 1 0;
17072                rel1.to_x: "elm.padding.right";
17073                rel2 {
17074                   relative: 0.0 1.0;
17075                   to_x: "elm.padding.right";
17076                }
17077                rel2.to_x: "elm.padding.right";
17078                align: 1.0 0.5;
17079                color: GENLIST_MULTILINE_TEXT_COLOR;
17080                text {
17081                   font: "SLP:style=Medium";
17082                   size: GENLIST_MULTILINE_TEXT_SIZE;
17083                   min: 0 1;
17084                   align: 0.0 0.5;
17085                   text_class: "slp_medium";
17086                }
17087             }
17088          }
17089          part { name: "elm.padding.text2.left";
17090             type: RECT;
17091             mouse_events: 0;
17092             scale: 1;
17093             description { state: "default" 0.0;
17094                min: GENLIST_PADDING_16_INC 0;
17095                fixed: 1 0;
17096                rel1.to_x: "elm.text.2";
17097                rel2 {
17098                   relative: 0.0 1.0;
17099                   to_x: "elm.text.2";
17100                }
17101                align: 1.0 0.5;
17102                visible: 0;
17103             }
17104          }
17105          part { name: "vertical_line";
17106             type: RECT;
17107             mouse_events: 0;
17108             description { state: "default" 0.0;
17109                min: 1 0;
17110                fixed: 1 0;
17111                rel1.to_x: "elm.padding.text2.left";
17112                rel2 {
17113                   relative: 0.0 1.0;
17114                   to_x: "elm.padding.text2.left";
17115                }
17116                align: 1.0 0.5;
17117                color: GENLIST_PART_LIST_LINE_COLOR_INC;
17118             }
17119          }
17120          part { name: "elm.padding.text1.right";
17121             type: RECT;
17122             mouse_events: 0;
17123             scale: 1;
17124             description { state: "default" 0.0;
17125                min: GENLIST_PADDING_16_INC 0;
17126                fixed: 1 0;
17127                rel1.to_x: "vertical_line";
17128                rel2 {
17129                   relative: 0.0 1.0;
17130                   to_x: "vertical_line";
17131                }
17132                align: 1.0 0.5;
17133                visible: 0;
17134             }
17135          }
17136          part { name: "elm.text.1";
17137             clip_to: "disclip";
17138             type: TEXT;
17139             mouse_events: 0;
17140             scale: 1;
17141             description { state: "default" 0.0;
17142                rel1 {
17143                   relative: 1.0 0.0;
17144                   to_x: "elm.padding.left";
17145                }
17146                rel2 {
17147                   relative: 0.0  1.0;
17148                   to_x: "elm.padding.text1.right";
17149                }
17150                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17151                text {
17152                   font: "SLP:style=Roman";
17153                   size: GENLIST_FONT_42_INC;
17154                   min: 0 1;
17155                   align: 1.0 0.5;
17156                   text_class: "list_item";
17157                }
17158             }
17159             description { state: "selected" 0.0;
17160                inherit: "default" 0.0;
17161                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17162             }
17163             GENLIST_DESCRIPTION_FLIP_ENABLED
17164          }
17165          part { name: "elm.flip.content";
17166             clip_to: "disclip";
17167             type: SWALLOW;
17168             mouse_events: 1;
17169             scale: 1;
17170             description { state: "default" 0.0;
17171                fixed: 1 1;
17172                rel1 {
17173                   relative: 1.0 0.5;
17174                   to_x: "vertical_line";
17175                }
17176                rel2 {
17177                   relative: 0.0 0.5;
17178                   to_x: "elm.padding.right";
17179                }
17180                visible: 0;
17181             }
17182             description { state: "flip_enabled" 0.0;
17183                inherit: "default" 0.0;
17184                visible: 1;
17185             }
17186          }
17187          GENLIST_PART_DISCLIP
17188       }
17189       programs {
17190          // signal: elm,state,%s,active
17191          //   a "check" item named %s went active
17192          // signal: elm,state,%s,passive
17193          //   a "check" item named %s went passive
17194          // default is passive
17195          /*program { name: "go_active";
17196             signal: "elm,state,selected";
17197             source: "elm";
17198             action: STATE_SET "selected" 0.0;
17199             target: "elm.text";
17200          }
17201          program { name: "go_passive";
17202             signal: "elm,state,unselected";
17203             source: "elm";
17204             action: STATE_SET "default" 0.0;
17205             target: "elm.text";
17206             transition: LINEAR 0.1;
17207          }*/
17208          program { name: "go_disabled";
17209             signal: "elm,state,disabled";
17210             source: "elm";
17211             action: STATE_SET "disabled" 0.0;
17212             target: "disclip";
17213          }
17214          program { name: "go_enabled";
17215             signal: "elm,state,enabled";
17216             source: "elm";
17217             action: STATE_SET "default" 0.0;
17218             target: "disclip";
17219          }
17220          GENLIST_PROGRAM_FLIP_2TEXT
17221       }
17222    }
17223
17224    group { name: "elm/genlist/item_compress/dialogue/2text.4.tb/default";
17225       inherit: "elm/genlist/item/dialogue/2text.4/default";
17226       parts {
17227          part { name: "elm.text.2";
17228             clip_to: "disclip";
17229             type: TEXTBLOCK;
17230             mouse_events: 0;
17231             scale: 1;
17232             description { state: "default" 0.0;
17233                min: GENLIST_SIZE_206_INC 0;
17234                fixed: 1 0;
17235                rel1.to_x: "elm.padding.right";
17236                rel2 {
17237                   relative: 0.0 1.0;
17238                   to_x: "elm.padding.right";
17239                }
17240                rel2.to_x: "elm.padding.right";
17241                align: 1.0 0.5;
17242                text {
17243                   style: "genlist_style_list_main_text_unread";
17244                   size: GENLIST_FONT_32_INC;
17245                   min: 0 1;
17246                   align: 0.0 0.5;
17247                }
17248             }
17249          }
17250       }
17251    }
17252
17253    group { name: "elm/genlist/item/dialogue/1text.3icon.2/default";
17254       alias: "elm/genlist/item_odd/dialogue/1text.3icon.2/default";
17255       alias: "elm/genlist/item_compress/dialogue/1text.3icon.2/default";
17256       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon.2/default";
17257       alias: "elm/layout/dialogue/1text.3icon.2";
17258       data.item: "stacking" "above";
17259       data.item: "selectraise" "on";
17260       data.item: "texts" "elm.text";
17261       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
17262       data.item: "flips" "elm.flip.content";
17263       images {
17264          image: "00_list_bar_press_1x80.png" COMP;
17265       }
17266       parts {
17267          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
17268          GENLIST_PART_DIALOGUE_BG_IMAGE
17269          GENLIST_PART_BOTTOM_LINE
17270          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17271          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17272          GENLIST_PART_DIALOGUE_ITEM
17273          GENLIST_PART_DIALOGUE_RIGHT_LINE
17274          part { name: "elm.icon.1";
17275             clip_to: "disclip";
17276             type: SWALLOW;
17277             scale: 1;
17278             description { state: "default" 0.0;
17279                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
17280                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
17281                fixed: 1 1;
17282                rel1 {
17283                   relative: 1.0 0.0;
17284                   to_x: "elm.padding.left";
17285                }
17286                rel2.to_x: "elm.padding.left";
17287                align: 0.0 0.5;
17288             }
17289             GENLIST_DESCRIPTION_FLIP_ENABLED
17290          }
17291          part { name: "elm.padding.icon1.right";
17292             clip_to: "disclip";
17293             type: RECT;
17294             scale: 1;
17295             description { state: "default" 0.0;
17296                min: GENLIST_SIZE_16_INC 0;
17297                fixed: 1 0;
17298                rel1 {
17299                   relative: 1.0 0.0;
17300                   to_x: "elm.icon.1";
17301                }
17302                rel2.to_x: "elm.icon.1";
17303                align: 0.0 0.0;
17304                visible: 0;
17305             }
17306          }
17307          part { name: "elm.icon.2";
17308             clip_to: "disclip";
17309             type: SWALLOW;
17310             scale: 1;
17311             description { state: "default" 0.0;
17312                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17313                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17314                fixed: 1 1;
17315                rel1 {
17316                   relative: 1.0 0.0;
17317                   to_x: "elm.padding.icon1.right";
17318                }
17319                rel2.to_x: "elm.padding.icon1.right";
17320                align: 0.0 0.5;
17321             }
17322             GENLIST_DESCRIPTION_FLIP_ENABLED
17323          }
17324          part { name: "elm.padding.icon2.right";
17325             clip_to: "disclip";
17326             type: RECT;
17327             scale: 1;
17328             description { state: "default" 0.0;
17329                min: GENLIST_SIZE_16_INC 0;
17330                fixed: 1 0;
17331                rel1 {
17332                   relative: 1.0 0.0;
17333                   to_x: "elm.icon.2";
17334                }
17335                rel2.to_x: "elm.icon.2";
17336                visible: 0;
17337             }
17338          }
17339          part { name: "elm.icon.3";
17340             clip_to: "disclip";
17341             type: SWALLOW;
17342             scale: 1;
17343             description { state: "default" 0.0;
17344                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17345                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17346                fixed: 1 1;
17347                rel1 {
17348                   relative: 0.0 0.0;
17349                   to_x: "elm.padding.right";
17350                }
17351                rel2 {
17352                   relative: 0.0 1.0;
17353                   to_x: "elm.padding.right";
17354                }
17355                align: 1.0 0.5;
17356             }
17357             GENLIST_DESCRIPTION_FLIP_ENABLED
17358          }
17359          part { name: "elm.padding.icon3.left";
17360             clip_to: "disclip";
17361             type: RECT;
17362             scale: 1;
17363             description { state: "default" 0.0;
17364                min: GENLIST_SIZE_16_INC 0;
17365                fixed: 1 0;
17366                rel1.to_x: "elm.icon.3";
17367                rel2 {
17368                   relative: 0.0 1.0;
17369                   to_x: "elm.icon.3";
17370                }
17371                align: 1.0 0.0;
17372                visible: 0;
17373             }
17374          }
17375          part { name: "elm.text";
17376             clip_to: "disclip";
17377             type: TEXT;
17378             mouse_events: 0;
17379             scale: 1;
17380             description { state: "default" 0.0;
17381                rel1 {
17382                   relative: 1.0 0.0;
17383                   to_x: "elm.padding.icon2.right";
17384                }
17385                rel2 {
17386                   relative: 0.0 1.0;
17387                   to_x: "elm.padding.icon3.left";
17388                }
17389                align: 0.0 0.5;
17390                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17391                text {
17392                   font: "SLP:style=Roman";
17393                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17394                   min: 0 1;
17395                   align: 0.0 0.5;
17396                   text_class: "list_item";
17397                }
17398             }
17399             description { state: "selected" 0.0;
17400                inherit: "default" 0.0;
17401                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17402             }
17403             GENLIST_DESCRIPTION_FLIP_ENABLED
17404          }
17405          GENLIST_PART_FLIP
17406          GENLIST_PART_DISCLIP
17407       }
17408       programs {
17409          program { name: "go_active";
17410             signal: "elm,state,selected";
17411             source: "elm";
17412             action: STATE_SET "selected" 0.0;
17413             target: "bg_image";
17414             target: "elm.text";
17415             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17416          }
17417          program { name: "go_passive";
17418             signal: "elm,state,unselected";
17419             source: "elm";
17420             action: STATE_SET "default" 0.0;
17421             target: "bg_image";
17422             target: "elm.text";
17423             transition: LINEAR 0.1;
17424          }
17425          program { name: "go_disabled";
17426             signal: "elm,state,disabled";
17427             source: "elm";
17428             action: STATE_SET "disabled" 0.0;
17429             target: "disclip";
17430          }
17431          program { name: "go_enabled";
17432             signal: "elm,state,enabled";
17433             source: "elm";
17434             action: STATE_SET "default" 0.0;
17435             target: "disclip";
17436          }
17437          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
17438          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17439       }
17440    }
17441
17442    group { name: "elm/genlist/item/dialogue/2text/default";
17443       alias: "elm/genlist/item_odd/dialogue/2text/default";
17444       alias: "elm/genlist/item_compress/dialogue/2text/default";
17445       alias: "elm/genlist/item_compress_odd/dialogue/2text/default";
17446       alias: "elm/layout/dialogue/2text";
17447       data.item: "stacking" "above";
17448       data.item: "selectraise" "on";
17449       data.item: "texts" "elm.text.1 elm.text.2";
17450       data.item: "flips" "elm.flip.content";
17451       parts {
17452          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17453          GENLIST_PART_DIALOGUE_BG_IMAGE
17454          GENLIST_PART_BOTTOM_LINE
17455          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17456          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17457          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17458          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17459          GENLIST_PART_DIALOGUE_ITEM
17460          GENLIST_PART_DIALOGUE_RIGHT_LINE
17461          part { name: "elm.text.1";
17462             clip_to: "disclip";
17463             type: TEXT;
17464             mouse_events: 0;
17465             scale: 1;
17466             description { state: "default" 0.0;
17467                min: 0 GENLIST_SIZE_61_INC;
17468                fixed: 0 1;
17469                rel1 {
17470                   relative: 1.0 1.0;
17471                   to_x: "elm.padding.left";
17472                   to_y: "elm.padding.top";
17473                }
17474                rel2 {
17475                   relative: 0.0 1.0;
17476                   to_x: "elm.padding.right";
17477                   to_y: "elm.padding.top";
17478                }
17479                align: 0.0 0.0;
17480                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17481                text {
17482                   font: "SLP:style=Roman";
17483                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17484                   min: 0 1;
17485                   align: 0.0 0.5;
17486                   text_class: "list_item";
17487                }
17488             }
17489             description { state: "selected" 0.0;
17490                inherit: "default" 0.0;
17491                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17492             }
17493             GENLIST_DESCRIPTION_FLIP_ENABLED
17494          }
17495          part { name: "elm.text.2";
17496             clip_to: "disclip";
17497             type: TEXT;
17498             mouse_events: 0;
17499             scale: 1;
17500             description { state: "default" 0.0;
17501                rel1 {
17502                   relative: 1.0 1.0;
17503                   to_x: "elm.padding.left";
17504                   to_y: "elm.text.1";
17505                }
17506                rel2 {
17507                   relative: 0.0 0.0;
17508                   to_x: "elm.padding.right";
17509                   to_y: "elm.padding.bottom";
17510                }
17511                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
17512                text {
17513                   font: "SLP:style=Medium";
17514                   size: GENLIST_FONT_32_INC;
17515                   min: 0 1;
17516                   align: 0.0 0.5;
17517                   text_class: "slp_medium";
17518                }
17519             }
17520             description { state: "selected" 0.0;
17521                inherit: "default" 0.0;
17522                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
17523             }
17524             GENLIST_DESCRIPTION_FLIP_ENABLED
17525          }
17526          GENLIST_PART_FLIP
17527          GENLIST_PART_DISCLIP
17528       }
17529       programs {
17530          // signal: elm,state,%s,active
17531          //   a "check" item named %s went active
17532          // signal: elm,state,%s,passive
17533          //   a "check" item named %s went passive
17534          // default is passive
17535          program { name: "go_active";
17536             signal: "elm,state,selected";
17537             source: "elm";
17538             action: STATE_SET "selected" 0.0;
17539             target: "bg_image";
17540             target: "elm.text.1";
17541             target: "elm.text.2";
17542             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17543          }
17544          program { name: "go_passive";
17545             signal: "elm,state,unselected";
17546             source: "elm";
17547             action: STATE_SET "default" 0.0;
17548             target: "bg_image";
17549             target: "elm.text.1";
17550             target: "elm.text.2";
17551             transition: LINEAR 0.1;
17552          }
17553          program { name: "go_disabled";
17554             signal: "elm,state,disabled";
17555             source: "elm";
17556             action: STATE_SET "disabled" 0.0;
17557             target: "disclip";
17558          }
17559          program { name: "go_enabled";
17560             signal: "elm,state,enabled";
17561             source: "elm";
17562             action: STATE_SET "default" 0.0;
17563             target: "disclip";
17564          }
17565          GENLIST_PROGRAM_FLIP_2TEXT
17566          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17567       }
17568    }
17569
17570    group { name: "elm/genlist/item/dialogue/2text.2/default";
17571       alias: "elm/genlist/item_odd/dialogue/2text.2/default";
17572       alias: "elm/genlist/item_compress/dialogue/2text.2/default";
17573       alias: "elm/genlist/item_compress_odd/dialogue/2text.2/default";
17574       alias: "elm/layout/dialogue/2text.2";
17575       data.item: "stacking" "above";
17576       data.item: "selectraise" "on";
17577       data.item: "texts" "elm.text.1 elm.text.2";
17578       data.item: "flips" "elm.flip.content";
17579       parts {
17580          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17581          GENLIST_PART_DIALOGUE_BG_IMAGE
17582          GENLIST_PART_BOTTOM_LINE
17583          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17584          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17585          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17586          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17587          GENLIST_PART_DIALOGUE_ITEM
17588          GENLIST_PART_DIALOGUE_RIGHT_LINE
17589          part { name: "elm.text.1";
17590             clip_to: "disclip";
17591             type: TEXT;
17592             mouse_events: 0;
17593             scale: 1;
17594             description { state: "default" 0.0;
17595                min: 0 GENLIST_SIZE_61_INC;
17596                fixed: 0 1;
17597                rel1 {
17598                   relative: 1.0 0.0;
17599                   to_x: "elm.padding.left";
17600                   to_y: "elm.padding.bottom";
17601                }
17602                rel2 {
17603                   relative: 0.0 0.0;
17604                   to_x: "elm.padding.right";
17605                   to_y: "elm.padding.bottom";
17606                }
17607                align: 0.0 1.0;
17608                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17609                text {
17610                   font: "SLP:style=Roman";
17611                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17612                   min: 0 1;
17613                   align: 0.0 0.5;
17614                   text_class: "list_item";
17615                }
17616             }
17617             description { state: "selected" 0.0;
17618                inherit: "default" 0.0;
17619                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17620             }
17621             GENLIST_DESCRIPTION_FLIP_ENABLED
17622          }
17623          part { name: "elm.text.2";
17624             clip_to: "disclip";
17625             type: TEXT;
17626             mouse_events: 0;
17627             scale: 1;
17628             description { state: "default" 0.0;
17629                rel1 {
17630                   relative: 1.0 1.0;
17631                   to_x: "elm.padding.left";
17632                   to_y: "elm.padding.top";
17633                }
17634                rel2 {
17635                   relative: 0.0 0.0;
17636                   to_x: "elm.padding.right";
17637                   to_y: "elm.text.1";
17638                }
17639                align: 0.0 1.0;
17640                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
17641                text {
17642                   font: "SLP:style=Medium";
17643                   size: GENLIST_FONT_32_INC;
17644                   min: 0 1;
17645                   align: 0.0 0.5;
17646                   text_class: "slp_medium";
17647                }
17648             }
17649             description { state: "selected" 0.0;
17650                inherit: "default" 0.0;
17651                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
17652             }
17653             GENLIST_DESCRIPTION_FLIP_ENABLED
17654          }
17655          GENLIST_PART_FLIP
17656          GENLIST_PART_DISCLIP
17657       }
17658       programs {
17659          // signal: elm,state,%s,active
17660          //   a "check" item named %s went active
17661          // signal: elm,state,%s,passive
17662          //   a "check" item named %s went passive
17663          // default is passive
17664          program { name: "go_active";
17665             signal: "elm,state,selected";
17666             source: "elm";
17667             action: STATE_SET "selected" 0.0;
17668             target: "bg_image";
17669             target: "elm.text.1";
17670             target: "elm.text.2";
17671             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17672          }
17673          program { name: "go_passive";
17674             signal: "elm,state,unselected";
17675             source: "elm";
17676             action: STATE_SET "default" 0.0;
17677             target: "bg_image";
17678             target: "elm.text.1";
17679             target: "elm.text.2";
17680             transition: LINEAR 0.1;
17681          }
17682          program { name: "go_disabled";
17683             signal: "elm,state,disabled";
17684             source: "elm";
17685             action: STATE_SET "disabled" 0.0;
17686             target: "disclip";
17687          }
17688          program { name: "go_enabled";
17689             signal: "elm,state,enabled";
17690             source: "elm";
17691             action: STATE_SET "default" 0.0;
17692             target: "disclip";
17693          }
17694          GENLIST_PROGRAM_FLIP_2TEXT
17695          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17696       }
17697    }
17698
17699    group { name: "elm/genlist/item/dialogue/2text.3/default";
17700       alias: "elm/genlist/item_odd/dialogue/2text.3/default";
17701       alias: "elm/genlist/item_compress/dialogue/2text.3/default";
17702       alias: "elm/genlist/item_compress_odd/dialogue/2text.3/default";
17703       alias: "elm/layout/dialogue/2text.3";
17704       data.item: "stacking" "above";
17705       data.item: "selectraise" "on";
17706       data.item: "texts" "elm.text.1 elm.text.2";
17707       data.item: "flips" "elm.flip.content";
17708       parts {
17709          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17710          GENLIST_PART_DIALOGUE_BG_IMAGE
17711          GENLIST_PART_BOTTOM_LINE
17712          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17713          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17714          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17715          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17716          GENLIST_PART_DIALOGUE_ITEM
17717          GENLIST_PART_DIALOGUE_RIGHT_LINE
17718          part { name: "elm.text.1";
17719             clip_to: "disclip";
17720             type: TEXT;
17721             mouse_events: 0;
17722             scale: 1;
17723             description { state: "default" 0.0;
17724                min: 0 GENLIST_SIZE_61_INC;
17725                fixed: 0 1;
17726                rel1 {
17727                   relative: 1.0 1.0;
17728                   to_x: "elm.padding.left";
17729                   to_y: "elm.padding.top";
17730                }
17731                rel2 {
17732                   relative: 0.0 1.0;
17733                   to_x: "elm.padding.right";
17734                   to_y: "elm.padding.top";
17735                }
17736                align: 0.0 0.0;
17737                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17738                text {
17739                   font: "SLP:style=Roman";
17740                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17741                   min: 0 1;
17742                   align: 0.0 0.5;
17743                   text_class: "list_item";
17744                }
17745             }
17746             description { state: "selected" 0.0;
17747                inherit: "default" 0.0;
17748                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17749             }
17750             GENLIST_DESCRIPTION_FLIP_ENABLED
17751          }
17752          part { name: "elm.text.2";
17753             clip_to: "disclip";
17754             type: TEXT;
17755             mouse_events: 0;
17756             scale: 1;
17757             description { state: "default" 0.0;
17758                rel1 {
17759                   relative: 1.0 1.0;
17760                   to_x: "elm.padding.left";
17761                   to_y: "elm.text.1";
17762                }
17763                rel2 {
17764                   relative: 0.0 0.0;
17765                   to_x: "elm.padding.right";
17766                   to_y: "elm.padding.bottom";
17767                }
17768                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
17769                text {
17770                   font: "SLP:style=Medium";
17771                   size: GENLIST_FONT_32_INC;
17772                   min: 0 1;
17773                   align: 0.0 0.5;
17774                   text_class: "slp_roman";
17775                }
17776             }
17777             description { state: "selected" 0.0;
17778                inherit: "default" 0.0;
17779                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17780             }
17781             GENLIST_DESCRIPTION_FLIP_ENABLED
17782          }
17783          GENLIST_PART_FLIP
17784          GENLIST_PART_DISCLIP
17785       }
17786       programs {
17787          // signal: elm,state,%s,active
17788          //   a "check" item named %s went active
17789          // signal: elm,state,%s,passive
17790          //   a "check" item named %s went passive
17791          // default is passive
17792          program { name: "go_active";
17793             signal: "elm,state,selected";
17794             source: "elm";
17795             action: STATE_SET "selected" 0.0;
17796             target: "bg_image";
17797             target: "elm.text.1";
17798             target: "elm.text.2";
17799             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17800          }
17801          program { name: "go_passive";
17802             signal: "elm,state,unselected";
17803             source: "elm";
17804             action: STATE_SET "default" 0.0;
17805             target: "bg_image";
17806             target: "elm.text.1";
17807             target: "elm.text.2";
17808             transition: LINEAR 0.1;
17809          }
17810          program { name: "go_disabled";
17811             signal: "elm,state,disabled";
17812             source: "elm";
17813             action: STATE_SET "disabled" 0.0;
17814             target: "disclip";
17815          }
17816          program { name: "go_enabled";
17817             signal: "elm,state,enabled";
17818             source: "elm";
17819             action: STATE_SET "default" 0.0;
17820             target: "disclip";
17821          }
17822          GENLIST_PROGRAM_FLIP_2TEXT
17823          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17824       }
17825    }
17826
17827    group { name: "elm/genlist/item/dialogue/2text.1icon.2/default";
17828       alias: "elm/genlist/item_odd/dialogue/2text.1icon.2/default";
17829       alias: "elm/genlist/item_compress/dialogue/2text.1icon.2/default";
17830       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.2/default";
17831       alias: "elm/layout/dialogue/2text.1icon.2";
17832       data.item: "stacking" "above";
17833       data.item: "selectraise" "on";
17834       data.item: "texts" "elm.text.1 elm.text.2";
17835       data.item: "contents" "elm.icon";
17836       data.item: "flips" "elm.flip.content";
17837       parts {
17838          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17839          GENLIST_PART_DIALOGUE_BG_IMAGE
17840          GENLIST_PART_BOTTOM_LINE
17841          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17842          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17843          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17844          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17845          GENLIST_PART_DIALOGUE_ITEM
17846          GENLIST_PART_DIALOGUE_RIGHT_LINE
17847          part { name: "elm.icon";
17848             clip_to: "disclip";
17849             type: SWALLOW;
17850             scale: 1;
17851             description { state: "default" 0.0;
17852                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17853                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17854                fixed: 1 1;
17855                rel1 {
17856                   relative: 1.0 0.0;
17857                   to_x: "elm.padding.left";
17858                }
17859                rel2.to_x: "elm.padding.left";
17860                align: 0.0 0.5;
17861             }
17862             GENLIST_DESCRIPTION_FLIP_ENABLED
17863          }
17864          part { name: "elm.padding.icon.right";
17865             clip_to: "disclip";
17866             type: RECT;
17867             scale: 1;
17868             description { state: "default" 0.0;
17869                min: GENLIST_PADDING_16_INC 0;
17870                fixed: 1 0;
17871                rel1 {
17872                   relative: 1.0 0.0;
17873                   to_x: "elm.icon";
17874                }
17875                rel2.to_x: "elm.icon";
17876                align: 0.0 0.0;
17877                visible: 0;
17878             }
17879          }
17880          part { name: "elm.text.1";
17881             clip_to: "disclip";
17882             type: TEXT;
17883             mouse_events: 0;
17884             scale: 1;
17885             description { state: "default" 0.0;
17886                min: 0 GENLIST_SIZE_61_INC;
17887                fixed: 0 1;
17888                rel1 {
17889                   relative: 1.0 1.0;
17890                   to_x: "elm.padding.icon.right";
17891                   to_y: "elm.padding.top";
17892                }
17893                rel2 {
17894                   relative: 0.0 1.0;
17895                   to_x: "elm.padding.right";
17896                   to_y: "elm.padding.top";
17897                }
17898                align: 0.0 0.0;
17899                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
17900                text {
17901                   font: "SLP:style=Roman";
17902                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
17903                   min: 0 1;
17904                   align: 0.0 0.5;
17905                   text_class: "list_item";
17906                }
17907             }
17908             description { state: "selected" 0.0;
17909                inherit: "default" 0.0;
17910                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
17911             }
17912             GENLIST_DESCRIPTION_FLIP_ENABLED
17913          }
17914          part { name: "elm.text.2";
17915             clip_to: "disclip";
17916             type: TEXT;
17917             mouse_events: 0;
17918             scale: 1;
17919             description { state: "default" 0.0;
17920                rel1 {
17921                   relative: 1.0 1.0;
17922                   to_x: "elm.padding.icon.right";
17923                   to_y: "elm.text.1";
17924                }
17925                rel2 {
17926                   relative: 0.0 0.0;
17927                   to_x: "elm.padding.right";
17928                   to_y: "elm.padding.bottom";
17929                }
17930                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
17931                text {
17932                   font: "SLP:style=Medium";
17933                   size: GENLIST_FONT_32_INC;
17934                   min: 0 1;
17935                   align: 0.0 0.5;
17936                   text_class: "slp_medium";
17937                }
17938             }
17939             description { state: "selected" 0.0;
17940                inherit: "default" 0.0;
17941                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
17942             }
17943             GENLIST_DESCRIPTION_FLIP_ENABLED
17944          }
17945          GENLIST_PART_FLIP
17946          GENLIST_PART_DISCLIP
17947       }
17948       programs {
17949          // signal: elm,state,%s,active
17950          //   a "check" item named %s went active
17951          // signal: elm,state,%s,passive
17952          //   a "check" item named %s went passive
17953          // default is passive
17954          program { name: "go_active";
17955             signal: "elm,state,selected";
17956             source: "elm";
17957             action: STATE_SET "selected" 0.0;
17958             target: "bg_image";
17959             target: "elm.text.1";
17960             target: "elm.text.2";
17961             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17962          }
17963          program { name: "go_passive";
17964             signal: "elm,state,unselected";
17965             source: "elm";
17966             action: STATE_SET "default" 0.0;
17967             target: "bg_image";
17968             target: "elm.text.1";
17969             target: "elm.text.2";
17970             transition: LINEAR 0.1;
17971          }
17972          program { name: "go_disabled";
17973             signal: "elm,state,disabled";
17974             source: "elm";
17975             action: STATE_SET "disabled" 0.0;
17976             target: "disclip";
17977          }
17978          program { name: "go_enabled";
17979             signal: "elm,state,enabled";
17980             source: "elm";
17981             action: STATE_SET "default" 0.0;
17982             target: "disclip";
17983          }
17984          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
17985          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17986       }
17987    }
17988
17989    group { name: "elm/genlist/item/dialogue/2text.1icon.3/default";
17990       alias: "elm/genlist/item_odd/dialogue/2text.1icon.3/default";
17991       alias: "elm/genlist/item_compress/dialogue/2text.1icon.3/default";
17992       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.3/default";
17993       alias: "elm/layout/dialogue/2text.1icon.3";
17994       data.item: "stacking" "above";
17995       data.item: "selectraise" "on";
17996       data.item: "texts" "elm.text.1 elm.text.2";
17997       data.item: "contents" "elm.icon";
17998       data.item: "flips" "elm.flip.content";
17999       parts {
18000          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18001          GENLIST_PART_DIALOGUE_BG_IMAGE
18002          GENLIST_PART_BOTTOM_LINE
18003          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18004          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18005          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18006          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18007          GENLIST_PART_DIALOGUE_ITEM
18008          GENLIST_PART_DIALOGUE_RIGHT_LINE
18009          part { name: "elm.icon";
18010             clip_to: "disclip";
18011             type: SWALLOW;
18012             scale: 1;
18013             description { state: "default" 0.0;
18014                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18015                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18016                fixed: 1 1;
18017                rel1 {
18018                   relative: 1.0 0.0;
18019                   to_x: "elm.padding.left";
18020                }
18021                rel2.to_x: "elm.padding.left";
18022                align: 0.0 0.5;
18023             }
18024             GENLIST_DESCRIPTION_FLIP_ENABLED
18025          }
18026          part { name: "elm.padding.icon.right";
18027             clip_to: "disclip";
18028             type: RECT;
18029             scale: 1;
18030             description { state: "default" 0.0;
18031                min: GENLIST_PADDING_16_INC 0;
18032                fixed: 1 0;
18033                rel1 {
18034                   relative: 1.0 0.0;
18035                   to_x: "elm.icon";
18036                }
18037                rel2.to_x: "elm.icon";
18038                align: 0.0 0.0;
18039                visible: 0;
18040             }
18041          }
18042          part { name: "elm.text.1";
18043             clip_to: "disclip";
18044             type: TEXT;
18045             mouse_events: 0;
18046             scale: 1;
18047             description { state: "default" 0.0;
18048                min: 0 GENLIST_SIZE_61_INC;
18049                fixed: 0 1;
18050                rel1 {
18051                   relative: 1.0 1.0;
18052                   to_x: "elm.padding.icon.right";
18053                   to_y: "elm.padding.top";
18054                }
18055                rel2 {
18056                   relative: 0.0 1.0;
18057                   to_x: "elm.padding.right";
18058                   to_y: "elm.padding.top";
18059                }
18060                align: 0.0 0.0;
18061                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18062                text {
18063                   font: "SLP:style=Roman";
18064                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18065                   min: 0 1;
18066                   align: 0.0 0.5;
18067                   text_class: "list_item";
18068                }
18069             }
18070             description { state: "selected" 0.0;
18071                inherit: "default" 0.0;
18072                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18073             }
18074             GENLIST_DESCRIPTION_FLIP_ENABLED
18075          }
18076          part { name: "elm.text.2";
18077             clip_to: "disclip";
18078             type: TEXT;
18079             mouse_events: 0;
18080             scale: 1;
18081             description { state: "default" 0.0;
18082                rel1 {
18083                   relative: 1.0 1.0;
18084                   to_x: "elm.padding.icon.right";
18085                   to_y: "elm.text.1";
18086                }
18087                rel2 {
18088                   relative: 0.0 0.0;
18089                   to_x: "elm.padding.right";
18090                   to_y: "elm.padding.bottom";
18091                }
18092                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
18093                text {
18094                   font: "SLP:style=Medium";
18095                   size: GENLIST_FONT_32_INC;
18096                   min: 0 1;
18097                   align: 0.0 0.5;
18098                   text_class: "slp_medium";
18099                }
18100             }
18101             description { state: "selected" 0.0;
18102                inherit: "default" 0.0;
18103                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18104             }
18105             GENLIST_DESCRIPTION_FLIP_ENABLED
18106          }
18107          GENLIST_PART_FLIP
18108          GENLIST_PART_DISCLIP
18109       }
18110       programs {
18111          // signal: elm,state,%s,active
18112          //   a "check" item named %s went active
18113          // signal: elm,state,%s,passive
18114          //   a "check" item named %s went passive
18115          // default is passive
18116          program { name: "go_active";
18117             signal: "elm,state,selected";
18118             source: "elm";
18119             action: STATE_SET "selected" 0.0;
18120             target: "bg_image";
18121             target: "elm.text.1";
18122             target: "elm.text.2";
18123             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18124          }
18125          program { name: "go_passive";
18126             signal: "elm,state,unselected";
18127             source: "elm";
18128             action: STATE_SET "default" 0.0;
18129             target: "bg_image";
18130             target: "elm.text.1";
18131             target: "elm.text.2";
18132             transition: LINEAR 0.1;
18133          }
18134          program { name: "go_disabled";
18135             signal: "elm,state,disabled";
18136             source: "elm";
18137             action: STATE_SET "disabled" 0.0;
18138             target: "disclip";
18139          }
18140          program { name: "go_enabled";
18141             signal: "elm,state,enabled";
18142             source: "elm";
18143             action: STATE_SET "default" 0.0;
18144             target: "disclip";
18145          }
18146          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
18147          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18148       }
18149    }
18150
18151    group { name: "elm/genlist/item/dialogue/2text.3icon/default";
18152       alias: "elm/genlist/item_odd/dialogue/2text.3icon/default";
18153       alias: "elm/genlist/item_compress/dialogue/2text.3icon/default";
18154       alias: "elm/genlist/item_compress_odd/dialogue/2text.3icon/default";
18155       alias: "elm/layout/dialogue/2text.3icon";
18156       data.item: "stacking" "above";
18157       data.item: "selectraise" "on";
18158       data.item: "texts" "elm.text.1 elm.text.2";
18159       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
18160       data.item: "flips" "elm.flip.content";
18161       parts {
18162          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18163          GENLIST_PART_DIALOGUE_BG_IMAGE
18164          GENLIST_PART_BOTTOM_LINE
18165          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18166          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18167          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18168          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18169          GENLIST_PART_DIALOGUE_ITEM
18170          GENLIST_PART_DIALOGUE_RIGHT_LINE
18171          part { name: "elm.swallow.colorbar";
18172             clip_to: "disclip";
18173             type: SWALLOW;
18174             scale: 1;
18175             description { state: "default" 0.0;
18176                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
18177                fixed: 1 1;
18178                rel1 {
18179                   relative: 1.0 0.0;
18180                   to_x: "elm.rect.dialogue";
18181                }
18182                rel2 {
18183                   relative: 1.0 0.0;
18184                   to_x: "elm.rect.dialogue";
18185                }
18186                align: 0.0 0.0;
18187             }
18188          }
18189          part { name: "elm.icon.1";
18190             clip_to: "disclip";
18191             type: SWALLOW;
18192             scale: 1;
18193             description { state: "default" 0.0;
18194                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18195                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18196                fixed: 1 1;
18197                rel1 {
18198                   relative: 1.0 0.0;
18199                   to_x: "elm.padding.left";
18200                }
18201                rel2 {
18202                   relative: 1.0 1.0;
18203                   to_x: "elm.padding.left";
18204                }
18205                align: 0.0 0.5;
18206             }
18207             GENLIST_DESCRIPTION_FLIP_ENABLED
18208          }
18209          part { name: "elm.padding.icon1.right";
18210             type: RECT;
18211             scale: 1;
18212             description { state: "default" 0.0;
18213                min: GENLIST_PADDING_16_INC 0;
18214                fixed: 1 0;
18215                rel1 {
18216                   relative: 1.0 0.0;
18217                   to_x: "elm.icon.1";
18218                }
18219                rel2.to_x: "elm.icon.1";
18220                align: 0.0 0.0;
18221                visible: 0;
18222             }
18223          }
18224          part { name: "elm.icon.2";
18225             clip_to: "disclip";
18226             type: SWALLOW;
18227             scale: 1;
18228             description { state: "default" 0.0;
18229                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18230                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18231                fixed: 1 1;
18232                rel1.to_x: "elm.padding.right";
18233                rel2 {
18234                   relative: 0.0 1.0;
18235                   to_x: "elm.padding.right";
18236                }
18237                align: 1.0 0.5;
18238             }
18239             GENLIST_DESCRIPTION_FLIP_ENABLED
18240          }
18241          part { name: "elm.padding.icon2.left";
18242             type: RECT;
18243             scale: 1;
18244             description { state: "default" 0.0;
18245                min: GENLIST_PADDING_16_INC 0;
18246                fixed: 1 0;
18247                rel1.to_x: "elm.icon.2";
18248                rel2 {
18249                   relative: 0.0 1.0;
18250                   to_x: "elm.icon.2";
18251                }
18252                align: 1.0 0.0;
18253                visible: 0;
18254             }
18255          }
18256          part { name: "elm.text.1";
18257             clip_to: "disclip";
18258             type: TEXT;
18259             mouse_events: 0;
18260             scale: 1;
18261             description { state: "default" 0.0;
18262                min: 0 GENLIST_SIZE_61_INC;
18263                fixed: 0 1;
18264                rel1 {
18265                   relative: 1.0 1.0;
18266                   to_x: "elm.padding.icon1.right";
18267                   to_y: "elm.padding.top";
18268                }
18269                rel2 {
18270                   relative: 0.0 1.0;
18271                   to_x: "elm.padding.icon2.left";
18272                   to_y: "elm.padding.top";
18273                }
18274                align: 0.0 0.0;
18275                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18276                text {
18277                   font: "SLP:style=Roman";
18278                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18279                   min: 0 1;
18280                   align: 0.0 0.5;
18281                   text_class: "list_item";
18282                }
18283             }
18284             description { state: "selected" 0.0;
18285                inherit: "default" 0.0;
18286                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18287             }
18288             GENLIST_DESCRIPTION_FLIP_ENABLED
18289          }
18290          part { name: "elm.text.2";
18291             clip_to: "disclip";
18292             type: TEXT;
18293             mouse_events: 0;
18294             scale: 1;
18295             description { state: "default" 0.0;
18296                rel1 {
18297                   relative: 1.0 1.0;
18298                   to_x: "elm.padding.icon1.right";
18299                   to_y: "elm.text.1";
18300                }
18301                rel2 {
18302                   relative: 0.0 0.0;
18303                   to_x: "elm.padding.icon2.left";
18304                   to_y: "elm.padding.bottom";
18305                }
18306                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
18307                text {
18308                   font: "SLP:style=Medium";
18309                   size: GENLIST_FONT_32_INC;
18310                   min: 0 1;
18311                   align: 0.0 0.5;
18312                   text_class: "slp_medium";
18313                }
18314             }
18315             description { state: "selected" 0.0;
18316                inherit: "default" 0.0;
18317                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18318             }
18319             GENLIST_DESCRIPTION_FLIP_ENABLED
18320          }
18321          GENLIST_PART_FLIP
18322          GENLIST_PART_DISCLIP
18323       }
18324       programs {
18325          // signal: elm,state,%s,active
18326          //   a "check" item named %s went active
18327          // signal: elm,state,%s,passive
18328          //   a "check" item named %s went passive
18329          // default is passive
18330          program { name: "go_active";
18331             signal: "elm,state,selected";
18332             source: "elm";
18333             action: STATE_SET "selected" 0.0;
18334             target: "bg_image";
18335             target: "elm.text.1";
18336             target: "elm.text.2";
18337             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18338          }
18339          program { name: "go_passive";
18340             signal: "elm,state,unselected";
18341             source: "elm";
18342             action: STATE_SET "default" 0.0;
18343             target: "bg_image";
18344             target: "elm.text.1";
18345             target: "elm.text.2";
18346             transition: LINEAR 0.1;
18347          }
18348          program { name: "go_disabled";
18349             signal: "elm,state,disabled";
18350             source: "elm";
18351             action: STATE_SET "disabled" 0.0;
18352             target: "disclip";
18353          }
18354          program { name: "go_enabled";
18355             signal: "elm,state,enabled";
18356             source: "elm";
18357             action: STATE_SET "default" 0.0;
18358             target: "disclip";
18359          }
18360          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18361          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18362       }
18363    }
18364
18365    group { name: "elm/genlist/item/dialogue/2text.2icon/default";
18366       alias: "elm/genlist/item_odd/dialogue/2text.2icon/default";
18367       alias: "elm/genlist/item_compress/dialogue/2text.2icon/default";
18368       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon/default";
18369       alias: "elm/layout/dialogue/2text.2icon";
18370       data.item: "stacking" "above";
18371       data.item: "selectraise" "on";
18372       data.item: "texts" "elm.text.1 elm.text.2";
18373       data.item: "contents" "elm.icon.1 elm.icon.2";
18374       data.item: "flips" "elm.flip.content";
18375       parts {
18376          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18377          GENLIST_PART_DIALOGUE_BG_IMAGE
18378          GENLIST_PART_BOTTOM_LINE
18379          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18380          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18381          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18382          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18383          GENLIST_PART_DIALOGUE_ITEM
18384          GENLIST_PART_DIALOGUE_RIGHT_LINE
18385          part { name: "elm.icon.1";
18386             clip_to: "disclip";
18387             type: SWALLOW;
18388             scale: 1;
18389             description { state: "default" 0.0;
18390                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
18391                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
18392                fixed: 1 1;
18393                rel1 {
18394                   relative: 1.0 1.0;
18395                   to_x: "elm.padding.left";
18396                   to_y: "elm.padding.top";
18397                }
18398                rel2 {
18399                   relative: 1.0 0.0;
18400                   to_x: "elm.padding.left";
18401                   to_y: "elm.padding.bottom";
18402                }
18403                align: 0.0 0.5;
18404             }
18405             GENLIST_DESCRIPTION_FLIP_ENABLED
18406          }
18407          part { name: "elm.padding.icon1.right";
18408             clip_to: "disclip";
18409             type: RECT;
18410             scale: 1;
18411             description { state: "default" 0.0;
18412                min: GENLIST_PADDING_16_INC 0;
18413                fixed: 1 0;
18414                rel1 {
18415                   relative: 1.0 0.0;
18416                   to_x: "elm.icon.1";
18417                }
18418                rel2.to_x: "elm.icon.1";
18419                align: 0.0 0.0;
18420                visible: 0;
18421             }
18422          }
18423          part { name: "elm.icon.2";
18424             clip_to: "disclip";
18425             type: SWALLOW;
18426             scale: 1;
18427             description { state: "default" 0.0;
18428                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18429                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18430                fixed: 1 1;
18431                rel1 {
18432                   relative: 1.0 1.0;
18433                   to_x: "elm.padding.icon1.right";
18434                   to_y: "elm.padding.top";
18435                }
18436                rel2 {
18437                   relative: 1.0 0.0;
18438                   to_x: "elm.padding.icon1.right";
18439                   to_y: "elm.padding.bottom";
18440                }
18441                align: 0.0 0.5;
18442             }
18443             GENLIST_DESCRIPTION_FLIP_ENABLED
18444          }
18445          part { name: "elm.padding.icon2.right";
18446             clip_to: "disclip";
18447             type: RECT;
18448             scale: 1;
18449             description { state: "default" 0.0;
18450                min: GENLIST_PADDING_16_INC 0;
18451                fixed: 1 0;
18452                rel1 {
18453                   relative: 1.0 0.0;
18454                   to_x: "elm.icon.2";
18455                }
18456                rel2.to_x: "elm.icon.2";
18457                align: 0.0 0.0;
18458                visible: 0;
18459             }
18460          }
18461          part { name: "elm.text.1";
18462             clip_to: "disclip";
18463             type: TEXT;
18464             mouse_events: 0;
18465             scale: 1;
18466             description { state: "default" 0.0;
18467                min: 0 GENLIST_SIZE_61_INC;
18468                fixed: 0 1;
18469                rel1 {
18470                   relative: 1.0 1.0;
18471                   to_x: "elm.padding.icon2.right";
18472                   to_y: "elm.padding.top";
18473                }
18474                rel2 {
18475                   relative: 0.0 1.0;
18476                   to_x: "elm.padding.right";
18477                   to_y: "elm.padding.top";
18478                }
18479                align: 0.0 0.0;
18480                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18481                text {
18482                   font: "SLP:style=Roman";
18483                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18484                   min: 0 1;
18485                   align: 0.0 0.5;
18486                   text_class: "list_item";
18487                }
18488             }
18489             description { state: "selected" 0.0;
18490                inherit: "default" 0.0;
18491                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18492             }
18493             GENLIST_DESCRIPTION_FLIP_ENABLED
18494          }
18495          part { name: "elm.text.2";
18496             clip_to: "disclip";
18497             type: TEXT;
18498             mouse_events: 0;
18499             scale: 1;
18500             description { state: "default" 0.0;
18501                rel1 {
18502                   relative: 1.0 1.0;
18503                   to_x: "elm.padding.icon2.right";
18504                   to_y: "elm.text.1";
18505                }
18506                rel2 {
18507                   relative: 0.0 0.0;
18508                   to_x: "elm.padding.right";
18509                   to_y: "elm.padding.bottom";
18510                }
18511                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
18512                text {
18513                   font: "SLP:style=Medium";
18514                   size: GENLIST_FONT_32_INC;
18515                   min: 0 1;
18516                   align: 0.0 0.5;
18517                   text_class: "slp_medium";
18518                }
18519             }
18520             description { state: "selected" 0.0;
18521                inherit: "default" 0.0;
18522                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
18523             }
18524             GENLIST_DESCRIPTION_FLIP_ENABLED
18525          }
18526          GENLIST_PART_FLIP
18527          GENLIST_PART_DISCLIP
18528       }
18529       programs {
18530          // signal: elm,state,%s,active
18531          //   a "check" item named %s went active
18532          // signal: elm,state,%s,passive
18533          //   a "check" item named %s went passive
18534          // default is passive
18535          program { name: "go_active";
18536             signal: "elm,state,selected";
18537             source: "elm";
18538             action: STATE_SET "selected" 0.0;
18539             target: "bg_image";
18540             target: "elm.text.1";
18541             target: "elm.text.2";
18542             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18543          }
18544          program { name: "go_passive";
18545             signal: "elm,state,unselected";
18546             source: "elm";
18547             action: STATE_SET "default" 0.0;
18548             target: "bg_image";
18549             target: "elm.text.1";
18550             target: "elm.text.2";
18551             transition: LINEAR 0.1;
18552          }
18553          program { name: "go_disabled";
18554             signal: "elm,state,disabled";
18555             source: "elm";
18556             action: STATE_SET "disabled" 0.0;
18557             target: "disclip";
18558          }
18559          program { name: "go_enabled";
18560             signal: "elm,state,enabled";
18561             source: "elm";
18562             action: STATE_SET "default" 0.0;
18563             target: "disclip";
18564          }
18565          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18566          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18567       }
18568    }
18569
18570    group { name: "elm/genlist/item/dialogue/2text.2icon.2/default";
18571       alias: "elm/genlist/item_odd/dialogue/2text.2icon.2/default";
18572       alias: "elm/genlist/item_compress/dialogue/2text.2icon.2/default";
18573       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.2/default";
18574       alias: "elm/layout/dialogue/2text.2icon.2";
18575       data.item: "stacking" "above";
18576       data.item: "selectraise" "on";
18577       data.item: "texts" "elm.text.1 elm.text.2";
18578       data.item: "contents" "elm.icon.1 elm.icon.2";
18579       data.item: "flips" "elm.flip.content";
18580       parts {
18581          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18582          GENLIST_PART_DIALOGUE_BG_IMAGE
18583          GENLIST_PART_BOTTOM_LINE
18584          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18585          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18586          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18587          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18588          GENLIST_PART_DIALOGUE_ITEM
18589          GENLIST_PART_DIALOGUE_RIGHT_LINE
18590          part { name: "elm.icon.1";
18591             clip_to: "disclip";
18592             type: SWALLOW;
18593             scale: 1;
18594             description { state: "default" 0.0;
18595                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18596                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18597                fixed: 1 1;
18598                rel1 {
18599                   relative: 1.0 1.0;
18600                   to_x: "elm.padding.left";
18601                   to_y: "elm.padding.top";
18602                }
18603                rel2 {
18604                   relative: 1.0 0.0;
18605                   to_x: "elm.padding.left";
18606                   to_y: "elm.padding.bottom";
18607                }
18608                align: 0.0 0.5;
18609             }
18610             GENLIST_DESCRIPTION_FLIP_ENABLED
18611          }
18612          part { name: "elm.padding.icon1.right";
18613             clip_to: "disclip";
18614             type: RECT;
18615             scale: 1;
18616             description { state: "default" 0.0;
18617                min: GENLIST_PADDING_16_INC 0;
18618                fixed: 1 0;
18619                rel1 {
18620                   relative: 1.0 0.0;
18621                   to_x: "elm.icon.1";
18622                }
18623                rel2.to_x: "elm.icon.1";
18624                align: 0.0 0.0;
18625                visible: 0;
18626             }
18627          }
18628          part { name: "elm.text.1";
18629             clip_to: "disclip";
18630             type: TEXT;
18631             mouse_events: 0;
18632             scale: 1;
18633             description { state: "default" 0.0;
18634                min: 0 GENLIST_SIZE_61_INC;
18635                fixed: 0 1;
18636                rel1 {
18637                   relative: 1.0 1.0;
18638                   to_x: "elm.padding.icon1.right";
18639                   to_y: "elm.padding.top";
18640                }
18641                rel2 {
18642                   relative: 0.0 1.0;
18643                   to_x: "elm.padding.right";
18644                   to_y: "elm.padding.top";
18645                }
18646                align: 0.0 0.0;
18647                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18648                text {
18649                   font: "SLP:style=Roman";
18650                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18651                   min: 0 1;
18652                   align: 0.0 0.5;
18653                   text_class: "list_item";
18654                }
18655             }
18656             description { state: "selected" 0.0;
18657                inherit: "default" 0.0;
18658                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18659             }
18660             GENLIST_DESCRIPTION_FLIP_ENABLED
18661          }
18662          part { name: "elm.icon.2";
18663             clip_to: "disclip";
18664             type: SWALLOW;
18665             scale: 1;
18666             description { state: "default" 0.0;
18667                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
18668                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
18669                fixed: 1 1;
18670                rel1 {
18671                   relative: 0.0 1.0;
18672                   to_x: "elm.padding.right";
18673                   to_y: "elm.text.1";
18674                }
18675                rel2 {
18676                   relative: 0.0 0.0;
18677                   to_x: "elm.padding.right";
18678                   to_y: "elm.padding.bottom";
18679                }
18680                align: 1.0 0.5;
18681             }
18682             GENLIST_DESCRIPTION_FLIP_ENABLED
18683          }
18684          part { name: "elm.padding.icon2.left";
18685             clip_to: "disclip";
18686             type: RECT;
18687             scale: 1;
18688             description { state: "default" 0.0;
18689                min: GENLIST_PADDING_16_INC 0;
18690                fixed: 1 0;
18691                rel1 {
18692                   relative: 0.0 0.0;
18693                   to_x: "elm.icon.2";
18694                }
18695                rel2.to_x: "elm.icon.2";
18696                align: 1.0 0.0;
18697                visible: 0;
18698             }
18699          }
18700          part { name: "elm.text.2";
18701             clip_to: "disclip";
18702             type: TEXT;
18703             mouse_events: 0;
18704             scale: 1;
18705             description { state: "default" 0.0;
18706                rel1 {
18707                   relative: 1.0 1.0;
18708                   to_x: "elm.padding.icon1.right";
18709                   to_y: "elm.text.1";
18710                }
18711                rel2 {
18712                   relative: 0.0 0.0;
18713                   to_x: "elm.padding.icon2.left";
18714                   to_y: "elm.padding.bottom";
18715                }
18716                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
18717                text {
18718                   font: "SLP:style=Medium";
18719                   size: GENLIST_FONT_32_INC;
18720                   min: 0 1;
18721                   align: 0.0 0.5;
18722                   text_class: "slp_medium";
18723                }
18724             }
18725             description { state: "selected" 0.0;
18726                inherit: "default" 0.0;
18727                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
18728             }
18729             GENLIST_DESCRIPTION_FLIP_ENABLED
18730          }
18731          GENLIST_PART_FLIP
18732          GENLIST_PART_DISCLIP
18733       }
18734       programs {
18735          // signal: elm,state,%s,active
18736          //   a "check" item named %s went active
18737          // signal: elm,state,%s,passive
18738          //   a "check" item named %s went passive
18739          // default is passive
18740          program { name: "go_active";
18741             signal: "elm,state,selected";
18742             source: "elm";
18743             action: STATE_SET "selected" 0.0;
18744             target: "bg_image";
18745             target: "elm.text.1";
18746             target: "elm.text.2";
18747             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18748          }
18749          program { name: "go_passive";
18750             signal: "elm,state,unselected";
18751             source: "elm";
18752             action: STATE_SET "default" 0.0;
18753             target: "bg_image";
18754             target: "elm.text.1";
18755             target: "elm.text.2";
18756             transition: LINEAR 0.1;
18757          }
18758          program { name: "go_disabled";
18759             signal: "elm,state,disabled";
18760             source: "elm";
18761             action: STATE_SET "disabled" 0.0;
18762             target: "disclip";
18763          }
18764          program { name: "go_enabled";
18765             signal: "elm,state,enabled";
18766             source: "elm";
18767             action: STATE_SET "default" 0.0;
18768             target: "disclip";
18769          }
18770          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18771          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18772       }
18773    }
18774
18775    group { name: "elm/genlist/item/dialogue/2text.2icon.3/default";
18776       alias: "elm/genlist/item_odd/dialogue/2text.2icon.3/default";
18777       alias: "elm/genlist/item_compress/dialogue/2text.2icon.3/default";
18778       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.3/default";
18779       alias: "elm/layout/dialogue/2text.2icon.3";
18780       data.item: "stacking" "above";
18781       data.item: "selectraise" "on";
18782       data.item: "texts" "elm.text.1 elm.text.2";
18783       data.item: "contents" "elm.icon.1 elm.icon.2";
18784       data.item: "flips" "elm.flip.content";
18785       parts {
18786          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18787          GENLIST_PART_DIALOGUE_BG_IMAGE
18788          GENLIST_PART_BOTTOM_LINE
18789          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18790          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18791          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18792          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18793          GENLIST_PART_DIALOGUE_ITEM
18794          GENLIST_PART_DIALOGUE_RIGHT_LINE
18795          part { name: "elm.icon.1";
18796             clip_to: "disclip";
18797             type: SWALLOW;
18798             scale: 1;
18799             description { state: "default" 0.0;
18800                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18801                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18802                fixed: 1 1;
18803                rel1 {
18804                   relative: 1.0 1.0;
18805                   to_x: "elm.padding.left";
18806                   to_y: "elm.padding.top";
18807                }
18808                rel2 {
18809                   relative: 1.0 0.0;
18810                   to_x: "elm.padding.left";
18811                   to_y: "elm.padding.bottom";
18812                }
18813                align: 0.0 0.5;
18814             }
18815             GENLIST_DESCRIPTION_FLIP_ENABLED
18816          }
18817          part { name: "elm.padding.icon1.right";
18818             clip_to: "disclip";
18819             type: RECT;
18820             scale: 1;
18821             description { state: "default" 0.0;
18822                min: GENLIST_PADDING_16_INC 0;
18823                fixed: 1 0;
18824                rel1 {
18825                   relative: 1.0 0.0;
18826                   to_x: "elm.icon.1";
18827                }
18828                rel2.to_x: "elm.icon.1";
18829                align: 0.0 0.0;
18830                visible: 0;
18831             }
18832          }
18833          part { name: "elm.icon.2";
18834             clip_to: "disclip";
18835             type: SWALLOW;
18836             scale: 1;
18837             description { state: "default" 0.0;
18838                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18839                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18840                fixed: 1 1;
18841                rel1 {
18842                   relative: 0.0 1.0;
18843                   to_x: "elm.padding.right";
18844                   to_y: "elm.padding.top";
18845                }
18846                rel2 {
18847                   relative: 0.0 0.0;
18848                   to_x: "elm.padding.right";
18849                   to_y: "elm.padding.bottom";
18850                }
18851                align: 1.0 0.5;
18852             }
18853             GENLIST_DESCRIPTION_FLIP_ENABLED
18854          }
18855          part { name: "elm.padding.icon2.left";
18856             clip_to: "disclip";
18857             type: RECT;
18858             scale: 1;
18859             description { state: "default" 0.0;
18860                min: GENLIST_PADDING_16_INC 0;
18861                fixed: 1 0;
18862                rel1.to_x: "elm.icon.2";
18863                rel2 {
18864                   relative: 0.0 1.0;
18865                   to_x: "elm.icon.2";
18866                }
18867                align: 1.0 0.0;
18868                visible: 0;
18869             }
18870          }
18871          part { name: "elm.text.1";
18872             clip_to: "disclip";
18873             type: TEXT;
18874             mouse_events: 0;
18875             scale: 1;
18876             description { state: "default" 0.0;
18877                min: 0 GENLIST_SIZE_61_INC;
18878                fixed: 0 1;
18879                rel1 {
18880                   relative: 1.0 1.0;
18881                   to_x: "elm.padding.icon1.right";
18882                   to_y: "elm.padding.top";
18883                }
18884                rel2 {
18885                   relative: 0.0 1.0;
18886                   to_x: "elm.padding.icon2.left";
18887                   to_y: "elm.padding.top";
18888                }
18889                align: 0.0 0.0;
18890                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
18891                text {
18892                   font: "SLP:style=Roman";
18893                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
18894                   min: 0 1;
18895                   align: 0.0 0.5;
18896                   text_class: "list_item";
18897                }
18898             }
18899             description { state: "selected" 0.0;
18900                inherit: "default" 0.0;
18901                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
18902             }
18903             GENLIST_DESCRIPTION_FLIP_ENABLED
18904          }
18905          part { name: "elm.text.2";
18906             clip_to: "disclip";
18907             type: TEXT;
18908             mouse_events: 0;
18909             scale: 1;
18910             description { state: "default" 0.0;
18911                rel1 {
18912                   relative: 1.0 1.0;
18913                   to_x: "elm.padding.icon1.right";
18914                   to_y: "elm.text.1";
18915                }
18916                rel2 {
18917                   relative: 0.0 0.0;
18918                   to_x: "elm.padding.icon2.left";
18919                   to_y: "elm.padding.bottom";
18920                }
18921                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
18922                text {
18923                   font: "SLP:style=Medium";
18924                   size: GENLIST_FONT_32_INC;
18925                   min: 0 1;
18926                   align: 0.0 0.5;
18927                   text_class: "slp_medium";
18928                }
18929             }
18930             description { state: "selected" 0.0;
18931                inherit: "default" 0.0;
18932                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
18933             }
18934             GENLIST_DESCRIPTION_FLIP_ENABLED
18935          }
18936          GENLIST_PART_FLIP
18937          GENLIST_PART_DISCLIP
18938       }
18939       programs {
18940          // signal: elm,state,%s,active
18941          //   a "check" item named %s went active
18942          // signal: elm,state,%s,passive
18943          //   a "check" item named %s went passive
18944          // default is passive
18945          program { name: "go_active";
18946             signal: "elm,state,selected";
18947             source: "elm";
18948             action: STATE_SET "selected" 0.0;
18949             target: "bg_image";
18950             target: "elm.text.1";
18951             target: "elm.text.2";
18952             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18953          }
18954          program { name: "go_passive";
18955             signal: "elm,state,unselected";
18956             source: "elm";
18957             action: STATE_SET "default" 0.0;
18958             target: "bg_image";
18959             target: "elm.text.1";
18960             target: "elm.text.2";
18961             transition: LINEAR 0.1;
18962          }
18963          program { name: "go_disabled";
18964             signal: "elm,state,disabled";
18965             source: "elm";
18966             action: STATE_SET "disabled" 0.0;
18967             target: "disclip";
18968          }
18969          program { name: "go_enabled";
18970             signal: "elm,state,enabled";
18971             source: "elm";
18972             action: STATE_SET "default" 0.0;
18973             target: "disclip";
18974          }
18975          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18976          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18977       }
18978    }
18979
18980    group { name: "elm/genlist/item_compress/dialogue/2text.2icon.3.tb/default";
18981       inherit: "elm/genlist/item/dialogue/2text.2icon.3/default";
18982       parts {
18983          part { name: "elm.text.1";
18984             clip_to: "disclip";
18985             type: TEXTBLOCK;
18986             mouse_events: 0;
18987             scale: 1;
18988             description { state: "default" 0.0;
18989                min: 0 GENLIST_SIZE_61_INC;
18990                fixed: 0 1;
18991                align: 0.0 0.0;
18992                rel1 {
18993                   relative: 1.0 1.0;
18994                   to_x: "elm.padding.icon1.right";
18995                   to_y: "elm.padding.top";
18996                }
18997                rel2 {
18998                   relative: 0.0 1.0;
18999                   to_x: "elm.padding.icon2.left";
19000                   to_y: "elm.padding.top";
19001                }
19002                text {
19003                   style: "genlist_style_list_sub_text_default";
19004                   min: 0 1;
19005                   align: 0.0 0.5;
19006                   text_class: "list_item";
19007                }
19008             }
19009             description { state: "selected" 0.0;
19010                inherit: "default" 0.0;
19011                // FIXME: Why color textblock of is not changed by text.style?
19012                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19013                text.style: "genlist_style_list_sub_text_focus";
19014             }
19015             GENLIST_DESCRIPTION_FLIP_ENABLED
19016
19017          }
19018          part { name: "elm.text.2";
19019             clip_to: "disclip";
19020             type: TEXTBLOCK;
19021             mouse_events: 0;
19022             scale: 1;
19023             description { state: "default" 0.0;
19024                rel1 {
19025                   relative: 1.0 1.0;
19026                   to_x: "elm.padding.icon1.right";
19027                   to_y: "elm.text.1";
19028                }
19029                rel2 {
19030                   relative: 0.0 0.0;
19031                   to_x: "elm.padding.icon2.left";
19032                   to_y: "elm.padding.bottom";
19033                }
19034                text {
19035                   style: "genlist_style_list_main_text_unread";
19036                   min: 0 1;
19037                   align: 0.0 0.5;
19038                   text_class: "slp_medium";
19039                }
19040             }
19041             description { state: "selected" 0.0;
19042                inherit: "default" 0.0;
19043                // FIXME: Why color textblock of is not changed by text.style?
19044                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
19045                text.style: "genlist_style_list_main_text_focus";
19046             }
19047             GENLIST_DESCRIPTION_FLIP_ENABLED
19048          }
19049       }
19050    }
19051
19052    group { name: "elm/genlist/item/dialogue/2text.1icon.5/default";
19053       alias: "elm/genlist/item_odd/dialogue/2text.1icon.5/default";
19054       alias: "elm/genlist/item_compress/dialogue/2text.1icon.5/default";
19055       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.5/default";
19056       alias: "elm/layout/dialogue/2text.1icon.5";
19057       data.item: "stacking" "above";
19058       data.item: "selectraise" "on";
19059       data.item: "texts" "elm.text.1 elm.text.2";
19060       data.item: "contents" "elm.icon";
19061       data.item: "flips" "elm.flip.content";
19062       parts {
19063          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19064          GENLIST_PART_DIALOGUE_BG_IMAGE
19065          GENLIST_PART_BOTTOM_LINE
19066          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19067          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19068          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19069          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19070          GENLIST_PART_DIALOGUE_ITEM
19071          GENLIST_PART_DIALOGUE_RIGHT_LINE
19072          part { name: "elm.icon";
19073             clip_to: "disclip";
19074             type: SWALLOW;
19075             scale: 1;
19076             description { state: "default" 0.0;
19077                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19078                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19079                fixed: 1 1;
19080                rel1 {
19081                   relative: 0.0 1.0;
19082                   to_x: "elm.padding.right";
19083                   to_y: "elm.padding.top";
19084                }
19085                rel2 {
19086                   relative: 0.0 0.0;
19087                   to_x: "elm.padding.right";
19088                   to_y: "elm.padding.bottom";
19089                }
19090                align: 1.0 0.5;
19091             }
19092             GENLIST_DESCRIPTION_FLIP_ENABLED
19093          }
19094          part { name: "elm.padding.icon.left";
19095             clip_to: "disclip";
19096             type: RECT;
19097             scale: 1;
19098             description { state: "default" 0.0;
19099                min: GENLIST_PADDING_16_INC 0;
19100                fixed: 1 0;
19101                rel1.to_x: "elm.icon";
19102                rel2 {
19103                   relative: 0.0 1.0;
19104                   to_x: "elm.icon";
19105                }
19106                align: 1.0 0.0;
19107                visible: 0;
19108             }
19109          }
19110          part { name: "elm.text.1";
19111             clip_to: "disclip";
19112             type: TEXT;
19113             mouse_events: 0;
19114             scale: 1;
19115             description { state: "default" 0.0;
19116                min: 0 GENLIST_SIZE_61_INC;
19117                fixed: 0 1;
19118                rel1 {
19119                   relative: 1.0 0.0;
19120                   to_x: "elm.padding.left";
19121                   to_y: "elm.padding.bottom";
19122                }
19123                rel2 {
19124                   relative: 0.0 0.0;
19125                   to_x: "elm.padding.icon.left";
19126                   to_y: "elm.padding.bottom";
19127                }
19128                align: 0.0 1.0;
19129                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19130                text {
19131                   font: "SLP:style=Roman";
19132                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19133                   min: 0 1;
19134                   align: 0.0 0.5;
19135                   text_class: "list_item";
19136                }
19137             }
19138             description { state: "selected" 0.0;
19139                inherit: "default" 0.0;
19140                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
19141             }
19142             GENLIST_DESCRIPTION_FLIP_ENABLED
19143          }
19144          part { name: "elm.text.2";
19145             clip_to: "disclip";
19146             type: TEXT;
19147             mouse_events: 0;
19148             scale: 1;
19149             description { state: "default" 0.0;
19150                rel1 {
19151                   relative: 1.0 1.0;
19152                   to_x: "elm.padding.left";
19153                   to_y: "elm.padding.top";
19154                }
19155                rel2 {
19156                   relative: 0.0 0.0;
19157                   to_x: "elm.padding.icon.left";
19158                   to_y: "elm.text.1";
19159                }
19160                align: 0.0 0.0;
19161                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
19162                text {
19163                   font: "SLP:style=Medium";
19164                   size: GENLIST_FONT_32_INC;
19165                   min: 0 1;
19166                   align: 0.0 0.5;
19167                   text_class: "slp_roman";
19168                }
19169             }
19170             description { state: "selected" 0.0;
19171                inherit: "default" 0.0;
19172                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19173             }
19174             GENLIST_DESCRIPTION_FLIP_ENABLED
19175          }
19176          GENLIST_PART_FLIP
19177          GENLIST_PART_DISCLIP
19178       }
19179       programs {
19180          // signal: elm,state,%s,active
19181          //   a "check" item named %s went active
19182          // signal: elm,state,%s,passive
19183          //   a "check" item named %s went passive
19184          // default is passive
19185          program { name: "go_active";
19186             signal: "elm,state,selected";
19187             source: "elm";
19188             action: STATE_SET "selected" 0.0;
19189             target: "bg_image";
19190             target: "elm.text.1";
19191             target: "elm.text.2";
19192             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19193          }
19194          program { name: "go_passive";
19195             signal: "elm,state,unselected";
19196             source: "elm";
19197             action: STATE_SET "default" 0.0;
19198             target: "bg_image";
19199             target: "elm.text.1";
19200             target: "elm.text.2";
19201             transition: LINEAR 0.1;
19202          }
19203          program { name: "go_disabled";
19204             signal: "elm,state,disabled";
19205             source: "elm";
19206             action: STATE_SET "disabled" 0.0;
19207             target: "disclip";
19208          }
19209          program { name: "go_enabled";
19210             signal: "elm,state,enabled";
19211             source: "elm";
19212             action: STATE_SET "default" 0.0;
19213             target: "disclip";
19214          }
19215          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
19216          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19217       }
19218    }
19219
19220 // 4.2.11
19221    group { name: "elm/genlist/item_compress/dialogue/1title.1text.2/default";
19222       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.2/default";
19223       alias: "elm/layout/dialogue/1title.1text.2";
19224       data.item: "stacking" "above";
19225       data.item: "selectraise" "on";
19226       data.item: "texts" "elm.title elm.text";
19227       parts {
19228          part { name: "base";
19229             type: RECT;
19230             repeat_events: 1;
19231             description { state: "default" 0.0;
19232                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
19233             }
19234          }
19235          GENLIST_PART_DIALOGUE_BG_IMAGE
19236          GENLIST_PART_BOTTOM_LINE
19237          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_21_INC )
19238          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
19239          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
19240          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19241          GENLIST_PART_DIALOGUE_ITEM
19242          GENLIST_PART_DIALOGUE_RIGHT_LINE
19243          part { name: "elm.title";
19244             clip_to: "disclip";
19245             type: TEXT;
19246             mouse_events: 0;
19247             scale: 1;
19248             description { state: "default" 0.0;
19249                min: GENLIST_SIZE_163_INC 0;
19250                fixed: 1 0;
19251                rel1 {
19252                   relative: 1.0 0.0;
19253                   to_x: "elm.padding.left";
19254                }
19255                rel2 {
19256                   relative: 1.0 1.0;
19257                   to_x: "elm.padding.left";
19258                }
19259                align: 0.0 0.0;
19260                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
19261                text {
19262                   font: "SLP:style=Medium";
19263                   size: GENLIST_LIST_SUB_TEXT_SIZE;
19264                   min: 0 1;
19265                   align: 0.0 0.5;
19266                   text_class: "slp_medium";
19267                }
19268             }
19269             description { state: "selected" 0.0;
19270                inherit: "default" 0.0;
19271                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19272             }
19273          }
19274          part { name: "vertical_line";
19275             clip_to: "disclip";
19276             type: RECT;
19277             mouse_events: 0;
19278             description { state: "default" 0.0;
19279                min: 1 0;
19280                fixed: 1 0;
19281                rel1 {
19282                   relative: 1.0 0.0;
19283                   to_x: "elm.title";
19284                }
19285                rel2.to_x: "elm.title";
19286                align: 0.0 0.5;
19287                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19288             }
19289          }
19290          part { name: "elm.padding.text.left";
19291             clip_to: "disclip";
19292             type: RECT;
19293             mouse_events: 0;
19294             description { state: "default" 0.0;
19295                min: GENLIST_PADDING_16_INC 0;
19296                fixed: 1 0;
19297                rel1 {
19298                   relative: 1.0 0.0;
19299                   to_x: "vertical_line";
19300                }
19301                rel2.to_x: "vertical_line";
19302                align: 0.0 0.5;
19303                visible: 0;
19304             }
19305          }
19306          part { name: "elm.text";
19307             clip_to: "disclip";
19308             type: TEXTBLOCK;
19309             mouse_events: 0;
19310             scale: 1;
19311             description { state: "default" 0.0;
19312                rel1 {
19313                   relative: 1.0 1.0;
19314                   to_x: "elm.padding.text.left";
19315                   to_y: "elm.padding.top";
19316                }
19317                rel2 {
19318                   relative: 0.0 0.0;
19319                   to_x: "elm.padding.right";
19320                   to_y: "elm.padding.bottom";
19321                }
19322                text {
19323                   style: "genlist_style_multiline_list_main_text_unread";
19324                   min: 0 1;
19325                   align: 0.0 0.5;
19326                }
19327             }
19328             description { state: "selected" 0.0;
19329                inherit: "default" 0.0;
19330                text.style: "genlist_style_multiline_list_main_text_focus";
19331             }
19332          }
19333          GENLIST_PART_DISCLIP
19334       }
19335       programs {
19336          // signal: elm,state,%s,active
19337          //   a "check" item named %s went active
19338          // signal: elm,state,%s,passive
19339          //   a "check" item named %s went passive
19340          // default is passive
19341          program { name: "go_active";
19342             signal: "elm,state,selected";
19343             source: "elm";
19344             action: STATE_SET "selected" 0.0;
19345             target: "bg_image";
19346             target: "elm.title";
19347             target: "elm.text";
19348             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19349          }
19350          program { name: "go_passive";
19351             signal: "elm,state,unselected";
19352             source: "elm";
19353             action: STATE_SET "default" 0.0;
19354             target: "bg_image";
19355             target: "elm.title";
19356             target: "elm.text";
19357             transition: LINEAR 0.1;
19358          }
19359          program { name: "go_disabled";
19360             signal: "elm,state,disabled";
19361             source: "elm";
19362             action: STATE_SET "disabled" 0.0;
19363             target: "disclip";
19364          }
19365          program { name: "go_enabled";
19366             signal: "elm,state,enabled";
19367             source: "elm";
19368             action: STATE_SET "default" 0.0;
19369             target: "disclip";
19370          }
19371          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19372       }
19373    }
19374
19375 /*   group { name: "elm/genlist/item/dialogue/1title.2text/default";
19376       alias: "elm/genlist/item_odd/dialogue/1title.2text/default";
19377       alias: "elm/genlist/item_compress/dialogue/1title.2text/default";
19378       alias: "elm/genlist/item_compress_odd/dialogue/1title.2text/default";
19379       alias: "elm/layout/dialogue/1title.2text";
19380       data.item: "stacking" "above";
19381       data.item: "selectraise" "on";
19382       data.item: "texts" "elm.title elm.text.1 elm.text.2";
19383       parts {
19384          GENLIST_PART_BASE( GENLIST_HEIGHT_142_INC )
19385          GENLIST_PART_BOTTOM_LINE
19386          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
19387          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19388          GENLIST_PART_DIALOGUE_ITEM
19389          GENLIST_PART_DIALOGUE_RIGHT_LINE
19390          part { name: "vertical_line";
19391             clip_to: "disclip";
19392             type: RECT;
19393             mouse_events: 0;
19394             description { state: "default" 0.0;
19395                min: 1 0;
19396                fixed: 1 0;
19397                rel1 {
19398                   relative: 1.0 0.0;
19399                   to_x: "elm.title";
19400                }
19401                rel2.to_x: "elm.title";
19402                align: 0.0 0.5;
19403                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19404             }
19405          }
19406          part { name: "center_line";
19407             clip_to: "disclip";
19408             type: RECT;
19409             mouse_events: 0;
19410             description { state: "default" 0.0;
19411                min: 0 1;
19412                fixed: 0 1;
19413                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19414                rel1 {
19415                   relative: 1.0 0.5;
19416                   to_x: "vertical_line";
19417                }
19418                rel2.relative: 1.0 0.5;
19419                align: 0.5 1.0;
19420             }
19421          }
19422          part { name: "elm.title";
19423             clip_to: "disclip";
19424             type: TEXT;
19425             mouse_events: 0;
19426             scale: 1;
19427             description { state: "default" 0.0;
19428                min: GENLIST_SIZE_163_INC 0;
19429                fixed: 1 0;
19430                rel1 {
19431                   relative: 1.0  0.0;
19432                   to_x: "elm.padding.left";
19433                }
19434                rel2.to_x: "elm.padding.left";
19435                align: 0.0 0.5;
19436                color: GENLIST_MULTILINE_TEXT_COLOR;
19437                text {
19438                   font: "SLP:style=Medium";
19439                   size: GENLIST_MULTILINE_TEXT_SIZE;
19440                   min: 0 1;
19441                   align: 0.0 0.5;
19442                   text_class: "slp_medium";
19443                }
19444             }
19445          }
19446          part { name: "elm.padding.title.right";
19447             clip_to: "disclip";
19448             type: RECT;
19449             mouse_events: 0;
19450             scale: 1;
19451             description { state: "default" 0.0;
19452                min: GENLIST_PADDING_16_INC 0;
19453                fixed: 1 0;
19454                rel1 {
19455                    relative: 1.0 0.0;
19456                    to_x: "elm.title";
19457                }
19458                rel2.to_x: "elm.title";
19459                visible: 0;
19460                align: 0.0 0.5;
19461             }
19462          }
19463          part { name: "elm.text.1";
19464             clip_to: "disclip";
19465             type: TEXT;
19466             mouse_events: 0;
19467             scale: 1;
19468             description { state: "default" 0.0;
19469                rel1 {
19470                   relative: 1.0 0.0;
19471                   to_x: "elm.padding.title.right";
19472                }
19473                rel2 {
19474                   relative: 0.0 0.0;
19475                   to_x: "elm.padding.right";
19476                   to_y: "center_line";
19477                }
19478                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19479                text {
19480                   font: "SLP:style=Roman";
19481                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19482                   min: 0 1;
19483                   align: 0.0 0.5;
19484                   text_class: "list_item";
19485                }
19486             }
19487          }
19488          part { name: "elm.text.2";
19489             clip_to: "disclip";
19490             type: TEXT;
19491             mouse_events: 0;
19492             scale: 1;
19493             description { state: "default" 0.0;
19494                rel1 {
19495                   relative: 1.0 0.5;
19496                   to_x: "elm.padding.title.right";
19497                }
19498                rel2 {
19499                   relative: 0.0 1.0;
19500                   to_x: "elm.padding.right";
19501                }
19502                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19503                text {
19504                   font: "SLP:style=Roman";
19505                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19506                   min: 0 1;
19507                   align: 0.0 0.5;
19508                   text_class: "slp_roman";
19509                }
19510             }
19511          }
19512          GENLIST_PART_DISCLIP
19513       }
19514       programs {
19515          // signal: elm,state,%s,active
19516          //   a "check" item named %s went active
19517          // signal: elm,state,%s,passive
19518          //   a "check" item named %s went passive
19519          // default is passive
19520          program { name: "go_active";
19521             signal: "elm,state,selected";
19522             source: "elm";
19523             action: STATE_SET "selected" 0.0;
19524             target: "elm.title";
19525             target: "elm.text.1";
19526             target: "elm.text.2";
19527          }
19528          program { name: "go_passive";
19529             signal: "elm,state,unselected";
19530             source: "elm";
19531             action: STATE_SET "default" 0.0;
19532             target: "elm.title";
19533             target: "elm.text.1";
19534             target: "elm.text.2";
19535             transition: LINEAR 0.1;
19536          }
19537          program { name: "go_disabled";
19538             signal: "elm,state,disabled";
19539             source: "elm";
19540             action: STATE_SET "disabled" 0.0;
19541             target: "disclip";
19542          }
19543          program { name: "go_enabled";
19544             signal: "elm,state,enabled";
19545             source: "elm";
19546             action: STATE_SET "default" 0.0;
19547             target: "disclip";
19548          }
19549       }
19550    }*/
19551
19552    /* DEPRECATED : remove this style. use dialogue/1text.4icon instead. */
19553    group { name: "elm/genlist/item/dialogue/4icon/default";
19554       alias: "elm/genlist/item_odd/dialogue/4icon/default";
19555       alias: "elm/genlist/item_compress/dialogue/4icon/default";
19556       alias: "elm/genlist/item_compress_odd/dialogue/4icon/default";
19557       alias: "elm/layout/dialogue/4icon";
19558       data.item: "stacking" "above";
19559       data.item: "selectraise" "on";
19560       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
19561       images {
19562          image : "00_input_bg.png" COMP;
19563       }
19564       parts {
19565          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
19566          GENLIST_PART_DIALOGUE_BG_IMAGE
19567          GENLIST_PART_BOTTOM_LINE
19568          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19569          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
19570          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_12_INC )
19571          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_74_INC )
19572          GENLIST_PART_DIALOGUE_ITEM
19573          GENLIST_PART_DIALOGUE_RIGHT_LINE
19574          part { name: "text";
19575             clip_to: "disclip";
19576             type: TEXT;
19577             mouse_events: 0;
19578             scale: 1;
19579             description { state: "default" 0.0;
19580                min: 0 GENLIST_SIZE_48_INC;
19581                fixed: 0 1;
19582                rel1 {
19583                   relative: 1.0 1.0;
19584                   to_x: "elm.padding.left";
19585                   to_y: "elm.padding.top";
19586                }
19587                rel2 {
19588                   relative: 0.0 1.0;
19589                   to_x: "elm.padding.right";
19590                   to_y: "elm.padding.top";
19591                }
19592                align: 0.0 0.0;
19593                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
19594                text {
19595                   font: "SLP:style=Medium";
19596                   size: GENLIST_FONT_32_INC;
19597                   min: 0 1;
19598                   align: 0.0 0.5;
19599                   text: "Password";
19600                   text_class: "list_item";
19601                }
19602             }
19603             description { state: "selected" 0.0;
19604                inherit: "default" 0.0;
19605                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
19606             }
19607          }
19608          part { name: "elm.padding.icon1.left";
19609             clip_to: "disclip";
19610             type: RECT;
19611             scale: 1;
19612             description { state: "default" 0.0;
19613                min: GENLIST_PADDING_74_INC 0;
19614                fixed: 1 0;
19615                rel1 {
19616                   relative: 1.0 0.0;
19617                   to_x: "elm.padding.left";
19618                   to_y: "elm.padding.bottom";
19619                }
19620                rel2 {
19621                   relative: 1.0 0.0;
19622                   to_x: "elm.padding.left";
19623                   to_y: "elm.padding.bottom";
19624                }
19625                align: 0.0 1.0;
19626                visible: 0;
19627             }
19628          }
19629          part { name: "elm.icon1.bg";
19630             clip_to: "disclip";
19631             type: IMAGE;
19632             scale: 1;
19633             description { state: "default" 0.0;
19634                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19635                fixed: 1 1;
19636                rel1 {
19637                   relative: 1.0 0.0;
19638                   to_x: "elm.padding.icon1.left";
19639                   to_y: "elm.padding.bottom";
19640                }
19641                rel2 {
19642                   relative: 1.0 0.0;
19643                   to_x: "elm.padding.icon1.left";
19644                   to_y: "elm.padding.bottom";
19645                }
19646                align: 0.0 1.0;
19647                image.normal: "00_input_bg.png";
19648                image.border: 4 4 4 4; // TODO: check this out.
19649                image.border_scale: 1;
19650             }
19651          }
19652          part { name: "elm.icon.1";
19653             clip_to: "disclip";
19654             type: SWALLOW;
19655             scale: 1;
19656             description { state: "default" 0.0;
19657                rel1.to: "elm.icon1.bg";
19658                rel2.to: "elm.icon1.bg";
19659                align: 0.5 0.5;
19660             }
19661          }
19662          part { name: "elm.padding.icon2.left";
19663             clip_to: "disclip";
19664             type: RECT;
19665             scale: 1;
19666             description { state: "default" 0.0;
19667                min: GENLIST_ICON_SMALL_SIZE 0;
19668                fixed: 1 0;
19669                rel1 {
19670                   relative: 1.0 0.0;
19671                   to_x: "elm.icon1.bg";
19672                   to_y: "elm.padding.bottom";
19673                }
19674                rel2 {
19675                   relative: 1.0 0.0;
19676                   to_x: "elm.icon1.bg";
19677                   to_y: "elm.padding.bottom";
19678                }
19679                align: 0.0 1.0;
19680                visible: 0;
19681             }
19682          }
19683          part { name: "elm.icon2.bg";
19684             clip_to: "disclip";
19685             type: IMAGE;
19686             scale: 1;
19687             description { state: "default" 0.0;
19688                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19689                fixed: 1 1;
19690                rel1 {
19691                   relative: 1.0 0.0;
19692                   to_x: "elm.padding.icon2.left";
19693                   to_y: "elm.padding.bottom";
19694                }
19695                rel2 {
19696                   relative: 1.0 0.0;
19697                   to_x: "elm.padding.icon2.left";
19698                   to_y: "elm.padding.bottom";
19699                }
19700                align: 0.0 1.0;
19701                image.normal: "00_input_bg.png";
19702                image.border: 4 4 4 4; // TODO : check this out
19703                image.border_scale: 1;
19704             }
19705          }
19706          part { name: "elm.icon.2";
19707             clip_to: "disclip";
19708             type: SWALLOW;
19709             scale: 1;
19710             description { state: "default" 0.0;
19711                rel1.to: "elm.icon2.bg";
19712                rel2.to: "elm.icon2.bg";
19713                align: 0.5 0.5;
19714             }
19715          }
19716          part { name: "elm.padding.icon3.left";
19717             clip_to: "disclip";
19718             type: RECT;
19719             scale: 1;
19720             description { state: "default" 0.0;
19721                min: GENLIST_ICON_SMALL_SIZE 0;
19722                fixed: 1 0;
19723                rel1 {
19724                   relative: 1.0 0.0;
19725                   to_x: "elm.icon2.bg";
19726                   to_y: "elm.padding.bottom";
19727                }
19728                rel2 {
19729                   relative: 1.0 0.0;
19730                   to_x: "elm.icon2.bg";
19731                   to_y: "elm.padding.bottom";
19732                }
19733                align: 0.0 1.0;
19734                visible: 0;
19735             }
19736          }
19737          part { name: "elm.icon3.bg";
19738             clip_to: "disclip";
19739             type: IMAGE;
19740             scale: 1;
19741             description { state: "default" 0.0;
19742                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19743                fixed: 1 1;
19744                rel1 {
19745                   relative: 1.0 0.0;
19746                   to_x: "elm.padding.icon3.left";
19747                   to_y: "elm.padding.bottom";
19748                }
19749                rel2 {
19750                   relative: 1.0 0.0;
19751                   to_x: "elm.padding.icon3.left";
19752                   to_y: "elm.padding.bottom";
19753                }
19754                align: 0.0 1.0;
19755                image.normal: "00_input_bg.png";
19756                image.border: 4 4 4 4; // TODO: handle this?
19757                image.border_scale: 1;
19758             }
19759          }
19760          part { name: "elm.icon.3";
19761             clip_to: "disclip";
19762             type: SWALLOW;
19763             scale: 1;
19764             description { state: "default" 0.0;
19765                rel1.to: "elm.icon3.bg";
19766                rel2.to: "elm.icon3.bg";
19767                align: 0.5 0.5;
19768             }
19769          }
19770          part { name: "elm.padding.icon4.left";
19771             clip_to: "disclip";
19772             type: RECT;
19773             scale: 1;
19774             description { state: "default" 0.0;
19775                min: GENLIST_ICON_SMALL_SIZE 0;
19776                fixed: 1 0;
19777                rel1 {
19778                   relative: 1.0 0.0;
19779                   to_x: "elm.icon3.bg";
19780                   to_y: "elm.padding.bottom";
19781                }
19782                rel2 {
19783                   relative: 1.0 0.0;
19784                   to_x: "elm.icon3.bg";
19785                   to_y: "elm.padding.bottom";
19786                }
19787                align: 0.0 1.0;
19788                visible: 0;
19789             }
19790          }
19791          part { name: "elm.icon4.bg";
19792             clip_to: "disclip";
19793             type: IMAGE;
19794             scale: 1;
19795             description { state: "default" 0.0;
19796                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
19797                fixed: 1 1;
19798                rel1 {
19799                   relative: 1.0 0.0;
19800                   to_x: "elm.padding.icon4.left";
19801                   to_y: "elm.padding.bottom";
19802                }
19803                rel2 {
19804                   relative: 1.0 0.0;
19805                   to_x: "elm.padding.icon4.left";
19806                   to_y: "elm.padding.bottom";
19807                }
19808                align: 0.0 1.0;
19809                image.normal: "00_input_bg.png";
19810                image.border: 4 4 4 4; // TODO: check this out
19811                image.border_scale: 1;
19812             }
19813          }
19814          part { name: "elm.icon.4";
19815             clip_to: "disclip";
19816             type: SWALLOW;
19817             scale: 1;
19818             description { state: "default" 0.0;
19819                rel1.to: "elm.icon4.bg";
19820                rel2.to: "elm.icon4.bg";
19821                align: 0.5 0.5;
19822             }
19823          }
19824          GENLIST_PART_DISCLIP
19825       }
19826       programs {
19827          // signal: elm,state,%s,active
19828          //   a "check" item named %s went active
19829          // signal: elm,state,%s,passive
19830          //   a "check" item named %s went passive
19831          // default is passive
19832          /*program { name: "go_active";
19833             signal: "elm,state,selected";
19834             source: "elm";
19835             action: STATE_SET "selected" 0.0;
19836             target: "bg_image";
19837             target: "elm.text.1";
19838             target: "elm.text.2";
19839          }
19840          program { name: "go_passive";
19841             signal: "elm,state,unselected";
19842             source: "elm";
19843             action: STATE_SET "default" 0.0;
19844             target: "bg_image";
19845             target: "elm.text.1";
19846             target: "elm.text.2";
19847             transition: LINEAR 0.1;
19848          }*/
19849          program { name: "go_disabled";
19850             signal: "elm,state,disabled";
19851             source: "elm";
19852             action: STATE_SET "disabled" 0.0;
19853             target: "disclip";
19854          }
19855          program { name: "go_enabled";
19856             signal: "elm,state,enabled";
19857             source: "elm";
19858             action: STATE_SET "default" 0.0;
19859             target: "disclip";
19860          }
19861       }
19862    }
19863
19864    group { name: "elm/genlist/item/dialogue/2text.2icon.4/default";
19865       alias: "elm/genlist/item_odd/dialogue/2text.2icon.4/default";
19866       alias: "elm/genlist/item_compress/dialogue/2text.2icon.4/default";
19867       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.4/default";
19868       alias: "elm/layout/dialogue/2text.2icon.4";
19869       data.item: "stacking" "above";
19870       data.item: "selectraise" "on";
19871       data.item: "texts" "elm.text.1 elm.text.2";
19872       data.item: "contents" "elm.icon.1 elm.icon.2";
19873       data.item: "flips" "elm.flip.content";
19874       images {
19875          image: "00_list_bar_press_1x80.png" COMP;
19876       }
19877       parts {
19878          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19879          GENLIST_PART_DIALOGUE_BG_IMAGE
19880          GENLIST_PART_BOTTOM_LINE
19881          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19882          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19883          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19884          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19885          GENLIST_PART_DIALOGUE_ITEM
19886          GENLIST_PART_DIALOGUE_RIGHT_LINE
19887          part { name: "elm.icon.1";
19888             clip_to: "disclip";
19889             type: SWALLOW;
19890             scale: 1;
19891             description { state: "default" 0.0;
19892                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19893                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19894                fixed: 1 1;
19895                rel1 {
19896                   relative: 1.0 1.0;
19897                   to_x: "elm.padding.left";
19898                   to_y: "elm.text.1";
19899                }
19900                rel2 {
19901                   relative: 1.0 0.0;
19902                   to_x: "elm.padding.left";
19903                   to_y: "elm.padding.bottom";
19904                }
19905                align: 0.0 0.5;
19906             }
19907             GENLIST_DESCRIPTION_FLIP_ENABLED
19908          }
19909          part { name: "elm.padding.icon1.right";
19910             clip_to: "disclip";
19911             type: RECT;
19912             scale: 1;
19913             description { state: "default" 0.0;
19914                min: GENLIST_PADDING_16_INC 0;
19915                fixed: 1 0;
19916                rel1 {
19917                   relative: 1.0 0.0;
19918                   to_x: "elm.icon.1";
19919                }
19920                rel2.to_x: "elm.icon.1";
19921                align: 0.0 0.0;
19922                visible: 0;
19923             }
19924          }
19925          part { name: "elm.icon.2";
19926             clip_to: "disclip";
19927             type: SWALLOW;
19928             scale: 1;
19929             description { state: "default" 0.0;
19930                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19931                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19932                fixed: 1 1;
19933                rel1 {
19934                   relative: 0.0 1.0;
19935                   to_x: "elm.padding.right";
19936                   to_y: "elm.padding.top";
19937                }
19938                rel2 {
19939                   relative: 0.0 1.0;
19940                   to_x: "elm.padding.right";
19941                   to_y: "elm.text.1";
19942                }
19943                align: 1.0 0.5;
19944             }
19945             GENLIST_DESCRIPTION_FLIP_ENABLED
19946          }
19947          part { name: "elm.padding.icon2.left";
19948             clip_to: "disclip";
19949             type: RECT;
19950             scale: 1;
19951             description { state: "default" 0.0;
19952                min: GENLIST_PADDING_16_INC 0;
19953                fixed: 1 0;
19954                rel1 {
19955                   relative: 0.0 0.0;
19956                   to_x: "elm.icon.2";
19957                }
19958                rel2.to_x: "elm.icon.2";
19959                align: 1.0 0.0;
19960                visible: 0;
19961             }
19962          }
19963          part { name: "elm.text.1";
19964             clip_to: "disclip";
19965             type: TEXT;
19966             mouse_events: 0;
19967             scale: 1;
19968             description { state: "default" 0.0;
19969                min: 0 GENLIST_SIZE_61_INC;
19970                fixed: 0 1;
19971                rel1 {
19972                   relative: 1.0 1.0;
19973                   to_x: "elm.padding.left";
19974                   to_y: "elm.padding.top";
19975                }
19976                rel2 {
19977                   relative: 0.0 1.0;
19978                   to_x: "elm.padding.icon2.left";
19979                   to_y: "elm.padding.top";
19980                }
19981                align: 0.0 0.0;
19982                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
19983                text {
19984                   font: "SLP:style=Roman";
19985                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
19986                   min: 0 1;
19987                   align: 0.0 0.5;
19988                   text_class: "list_item";
19989                }
19990             }
19991             description { state: "selected" 0.0;
19992                inherit: "default" 0.0;
19993                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
19994             }
19995             GENLIST_DESCRIPTION_FLIP_ENABLED
19996          }
19997          part { name: "elm.text.2";
19998             clip_to: "disclip";
19999             type: TEXT;
20000             mouse_events: 0;
20001             scale: 1;
20002             description { state: "default" 0.0;
20003                rel1 {
20004                   relative: 1.0 1.0;
20005                   to_x: "elm.padding.icon1.right";
20006                   to_y: "elm.text.1";
20007                }
20008                rel2 {
20009                   relative: 0.0 0.0;
20010                   to_x: "elm.padding.right";
20011                   to_y: "elm.padding.bottom";
20012                }
20013                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
20014                text {
20015                   font: "SLP:style=Medium";
20016                   size: GENLIST_FONT_32_INC;
20017                   min: 0 1;
20018                   align: 0.0 0.5;
20019                   text_class: "slp_medium";
20020                }
20021             }
20022             description { state: "selected" 0.0;
20023                inherit: "default" 0.0;
20024                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
20025             }
20026             GENLIST_DESCRIPTION_FLIP_ENABLED
20027          }
20028          GENLIST_PART_FLIP
20029          GENLIST_PART_DISCLIP
20030       }
20031       programs {
20032          // signal: elm,state,%s,active
20033          //   a "check" item named %s went active
20034          // signal: elm,state,%s,passive
20035          //   a "check" item named %s went passive
20036          // default is passive
20037          program { name: "go_active";
20038             signal: "elm,state,selected";
20039             source: "elm";
20040             action: STATE_SET "selected" 0.0;
20041             target: "bg_image";
20042             target: "elm.text.1";
20043             target: "elm.text.2";
20044             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20045          }
20046          program { name: "go_passive";
20047             signal: "elm,state,unselected";
20048             source: "elm";
20049             action: STATE_SET "default" 0.0;
20050             target: "bg_image";
20051             target: "elm.text.1";
20052             target: "elm.text.2";
20053             transition: LINEAR 0.1;
20054          }
20055          program { name: "go_disabled";
20056             signal: "elm,state,disabled";
20057             source: "elm";
20058             action: STATE_SET "disabled" 0.0;
20059             target: "disclip";
20060          }
20061          program { name: "go_enabled";
20062             signal: "elm,state,enabled";
20063             source: "elm";
20064             action: STATE_SET "default" 0.0;
20065             target: "disclip";
20066          }
20067          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
20068          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20069       }
20070    }
20071
20072    group { name: "elm/genlist/item/dialogue/2text.1icon.6/default";
20073       alias: "elm/genlist/item_odd/dialogue/2text.1icon.6/default";
20074       alias: "elm/genlist/item_compress/dialogue/2text.1icon.6/default";
20075       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.6/default";
20076       alias: "elm/layout/dialogue/2text.1icon.6";
20077       data.item: "stacking" "above";
20078       data.item: "selectraise" "on";
20079       data.item: "texts" "elm.text.1 elm.text.2";
20080       data.item: "contents" "elm.icon";
20081       data.item: "flips" "elm.flip.content";
20082       parts {
20083          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20084          GENLIST_PART_DIALOGUE_BG_IMAGE
20085          GENLIST_PART_BOTTOM_LINE
20086          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20087          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20088          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20089          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20090          GENLIST_PART_DIALOGUE_ITEM
20091          GENLIST_PART_DIALOGUE_RIGHT_LINE
20092          part { name: "elm.icon";
20093             clip_to: "disclip";
20094             type: SWALLOW;
20095             scale: 1;
20096             description { state: "default" 0.0;
20097                fixed: 1 1;
20098                rel1.to_x: "elm.padding.right";
20099                rel2 {
20100                   relative: 0.0 1.0;
20101                   to_x: "elm.padding.right";
20102                }
20103                align: 1.0 0.5;
20104             }
20105             GENLIST_DESCRIPTION_FLIP_ENABLED
20106          }
20107          part { name: "elm.padding.icon.left";
20108             clip_to: "disclip";
20109             type: RECT;
20110             scale: 1;
20111             description { state: "default" 0.0;
20112                min: GENLIST_SIZE_16_INC 0;
20113                fixed: 1 0;
20114                rel1.to_x: "elm.icon";
20115                rel2 {
20116                   relative: 0.0 1.0;
20117                   to_x: "elm.icon";
20118                }
20119                align: 1.0 0.0;
20120                visible: 0;
20121             }
20122          }
20123          part { name: "elm.text.1";
20124             clip_to: "disclip";
20125             type: TEXT;
20126             mouse_events: 0;
20127             scale: 1;
20128             description { state: "default" 0.0;
20129                min: 0 GENLIST_SIZE_61_INC;
20130                fixed: 0 1;
20131                rel1 {
20132                   relative: 1.0 1.0;
20133                   to_x: "elm.padding.left";
20134                   to_y: "elm.padding.top";
20135                }
20136                rel2 {
20137                   relative: 0.0 1.0;
20138                   to_x: "elm.padding.icon.left";
20139                   to_y: "elm.padding.top";
20140                }
20141                align: 0.0 0.0;
20142                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20143                text {
20144                   font: "SLP:style=Roman";
20145                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20146                   min: 0 1;
20147                   align: 0.0 0.5;
20148                   text_class: "list_item";
20149                }
20150             }
20151             description { state: "selected" 0.0;
20152                inherit: "default" 0.0;
20153                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20154             }
20155             GENLIST_DESCRIPTION_FLIP_ENABLED
20156          }
20157          part { name: "elm.text.2";
20158             clip_to: "disclip";
20159             type: TEXT;
20160             mouse_events: 0;
20161             scale: 1;
20162             description { state: "default" 0.0;
20163                rel1 {
20164                   relative: 1.0 1.0;
20165                   to_x: "elm.padding.left";
20166                   to_y: "elm.text.1";
20167                }
20168                rel2 {
20169                   relative: 0.0 0.0;
20170                   to_x: "elm.padding.icon.left";
20171                   to_y: "elm.padding.bottom";
20172                }
20173                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
20174                text {
20175                   font: "SLP:style=Medium";
20176                   size: GENLIST_FONT_32_INC;
20177                   min: 0 1;
20178                   align: 0.0 0.5;
20179                   text_class: "slp_medium";
20180                }
20181             }
20182             description { state: "selected" 0.0;
20183                inherit: "default" 0.0;
20184                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20185             }
20186             GENLIST_DESCRIPTION_FLIP_ENABLED
20187          }
20188          GENLIST_PART_FLIP
20189          GENLIST_PART_DISCLIP
20190       }
20191       programs {
20192          // signal: elm,state,%s,active
20193          //   a "check" item named %s went active
20194          // signal: elm,state,%s,passive
20195          //   a "check" item named %s went passive
20196          // default is passive
20197          program { name: "go_active";
20198             signal: "elm,state,selected";
20199             source: "elm";
20200             action: STATE_SET "selected" 0.0;
20201             target: "bg_image";
20202             target: "elm.text.1";
20203             target: "elm.text.2";
20204             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20205          }
20206          program { name: "go_passive";
20207             signal: "elm,state,unselected";
20208             source: "elm";
20209             action: STATE_SET "default" 0.0;
20210             target: "bg_image";
20211             target: "elm.text.1";
20212             target: "elm.text.2";
20213             transition: LINEAR 0.1;
20214          }
20215          program { name: "go_disabled";
20216             signal: "elm,state,disabled";
20217             source: "elm";
20218             action: STATE_SET "disabled" 0.0;
20219             target: "disclip";
20220          }
20221          program { name: "go_enabled";
20222             signal: "elm,state,enabled";
20223             source: "elm";
20224             action: STATE_SET "default" 0.0;
20225             target: "disclip";
20226          }
20227          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20228          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20229       }
20230    }
20231
20232    group { name: "elm/genlist/item/dialogue/2text.1icon.7/default";
20233       alias: "elm/genlist/item_odd/dialogue/2text.1icon.7/default";
20234       alias: "elm/genlist/item_compress/dialogue/2text.1icon.7/default";
20235       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.7/default";
20236       alias: "elm/layout/dialogue/2text.1icon.7";
20237       data.item: "stacking" "above";
20238       data.item: "selectraise" "on";
20239       data.item: "texts" "elm.text.1 elm.text.2";
20240       data.item: "contents" "elm.icon";
20241       data.item: "flips" "elm.flip.content";
20242       parts {
20243          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20244          GENLIST_PART_DIALOGUE_BG_IMAGE
20245          GENLIST_PART_BOTTOM_LINE
20246          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20247          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20248          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20249          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20250          GENLIST_PART_DIALOGUE_ITEM
20251          GENLIST_PART_DIALOGUE_RIGHT_LINE
20252          part { name: "elm.icon";
20253             clip_to: "disclip";
20254             type: SWALLOW;
20255             scale: 1;
20256             description { state: "default" 0.0;
20257                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
20258                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
20259                fixed: 1 1;
20260                rel1 {
20261                   relative: 0.0 1.0;
20262                   to_x: "elm.padding.right";
20263                   to_y: "elm.padding.top";
20264                }
20265                rel2 {
20266                   relative: 0.0 0.0;
20267                   to_x: "elm.padding.right";
20268                   to_y: "elm.padding.bottom";
20269                }
20270                align: 1.0 0.5;
20271             }
20272             GENLIST_DESCRIPTION_FLIP_ENABLED
20273          }
20274          part { name: "elm.padding.icon.left";
20275             clip_to: "disclip";
20276             type: RECT;
20277             scale: 1;
20278             description { state: "default" 0.0;
20279                min: GENLIST_SIZE_16_INC 0;
20280                fixed: 1 0;
20281                rel1.to_x: "elm.icon";
20282                rel2 {
20283                   relative: 0.0 1.0;
20284                   to_x: "elm.icon";
20285                }
20286                align: 1.0 0.0;
20287                visible: 0;
20288             }
20289          }
20290          part { name: "elm.text.1";
20291             clip_to: "disclip";
20292             type: TEXT;
20293             mouse_events: 0;
20294             scale: 1;
20295             description { state: "default" 0.0;
20296                min: 0 GENLIST_SIZE_61_INC;
20297                fixed: 0 1;
20298                rel1 {
20299                   relative: 1.0 1.0;
20300                   to_x: "elm.padding.left";
20301                   to_y: "elm.padding.top";
20302                }
20303                rel2 {
20304                   relative: 0.0 1.0;
20305                   to_x: "elm.padding.icon.left";
20306                   to_y: "elm.padding.top";
20307                }
20308                align: 0.0 0.0;
20309                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20310                text {
20311                   font: "SLP:style=Roman";
20312                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20313                   min: 0 1;
20314                   align: 0.0 0.5;
20315                   text_class: "list_item";
20316                }
20317             }
20318             description { state: "selected" 0.0;
20319                inherit: "default" 0.0;
20320                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20321             }
20322             GENLIST_DESCRIPTION_FLIP_ENABLED
20323          }
20324          part { name: "elm.text.2";
20325             clip_to: "disclip";
20326             type: TEXT;
20327             mouse_events: 0;
20328             scale: 1;
20329             description { state: "default" 0.0;
20330                rel1 {
20331                   relative: 1.0 1.0;
20332                   to_x: "elm.padding.left";
20333                   to_y: "elm.text.1";
20334                }
20335                rel2 {
20336                   relative: 0.0 0.0;
20337                   to_x: "elm.padding.icon.left";
20338                   to_y: "elm.padding.bottom";
20339                }
20340                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
20341                text {
20342                   font: "SLP:style=Medium";
20343                   size: GENLIST_FONT_32_INC;
20344                   min: 0 1;
20345                   align: 0.0 0.5;
20346                   text_class: "slp_medium";
20347                }
20348             }
20349             description { state: "selected" 0.0;
20350                inherit: "default" 0.0;
20351                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
20352             }
20353             GENLIST_DESCRIPTION_FLIP_ENABLED
20354          }
20355          GENLIST_PART_FLIP
20356          GENLIST_PART_DISCLIP
20357       }
20358       programs {
20359          // signal: elm,state,%s,active
20360          //   a "check" item named %s went active
20361          // signal: elm,state,%s,passive
20362          //   a "check" item named %s went passive
20363          // default is passive
20364          program { name: "go_active";
20365             signal: "elm,state,selected";
20366             source: "elm";
20367             action: STATE_SET "selected" 0.0;
20368             target: "bg_image";
20369             target: "elm.text.1";
20370             target: "elm.text.2";
20371             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20372          }
20373          program { name: "go_passive";
20374             signal: "elm,state,unselected";
20375             source: "elm";
20376             action: STATE_SET "default" 0.0;
20377             target: "bg_image";
20378             target: "elm.text.1";
20379             target: "elm.text.2";
20380             transition: LINEAR 0.1;
20381          }
20382          program { name: "go_disabled";
20383             signal: "elm,state,disabled";
20384             source: "elm";
20385             action: STATE_SET "disabled" 0.0;
20386             target: "disclip";
20387          }
20388          program { name: "go_enabled";
20389             signal: "elm,state,enabled";
20390             source: "elm";
20391             action: STATE_SET "default" 0.0;
20392             target: "disclip";
20393          }
20394          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20395          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20396       }
20397    }
20398
20399    group { name: "elm/genlist/item/dialogue/2text.1icon.8/default";
20400       alias: "elm/genlist/item_odd/dialogue/2text.1icon.8/default";
20401       alias: "elm/genlist/item_compress/dialogue/2text.1icon.8/default";
20402       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.8/default";
20403       alias: "elm/layout/dialogue/2text.1icon.8";
20404       data.item: "stacking" "above";
20405       data.item: "selectraise" "on";
20406       data.item: "texts" "elm.text.1 elm.text.2";
20407       data.item: "contents" "elm.icon";
20408       data.item: "flips" "elm.flip.content";
20409       images {
20410          image: "00_list_bar_press_1x80.png" COMP;
20411       }
20412       parts {
20413          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20414          GENLIST_PART_DIALOGUE_BG_IMAGE
20415          GENLIST_PART_BOTTOM_LINE
20416          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20417          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20418          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20419          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20420          GENLIST_PART_DIALOGUE_ITEM
20421          GENLIST_PART_DIALOGUE_RIGHT_LINE
20422          part { name: "elm.text.2";
20423             clip_to: "disclip";
20424             type: TEXT;
20425             mouse_events: 0;
20426             scale: 1;
20427             description { state: "default" 0.0;
20428                min: 0 GENLIST_SIZE_48_INC;
20429                fixed: 0 1;
20430                rel1 {
20431                   relative: 1.0 1.0;
20432                   to_x: "elm.padding.left";
20433                   to_y: "elm.padding.top";
20434                }
20435                rel2 {
20436                   relative: 0.0 1.0;
20437                   to_x: "elm.padding.right";
20438                   to_y: "elm.padding.top";
20439                }
20440                align: 0.0 0.0;
20441                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
20442                text {
20443                   font: "SLP:style=Medium";
20444                   size: GENLIST_FONT_32_INC;
20445                   min: 0 1;
20446                   align: 0.0 0.5;
20447                   text_class: "slp_roman";
20448                }
20449             }
20450             description { state: "selected" 0.0;
20451                inherit: "default" 0.0;
20452                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
20453             }
20454             GENLIST_DESCRIPTION_FLIP_ENABLED
20455          }
20456          part { name: "elm.text.1";
20457             clip_to: "disclip";
20458             type: TEXT;
20459             mouse_events: 0;
20460             scale: 1;
20461             description { state: "default" 0.0;
20462                min: GENLIST_SIZE_672_INC 0;
20463                fixed: 1 0;
20464                rel1 {
20465                   relative: 1.0 1.0;
20466                   to_x: "elm.padding.left";
20467                   to_y: "elm.text.2";
20468                }
20469                rel2 {
20470                   relative: 1.0 0.0;
20471                   to_x: "elm.padding.left";
20472                   to_y: "elm.padding.bottom";
20473                }
20474                align: 0.0 0.5;
20475                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20476                text {
20477                   font: "SLP:style=Roman";
20478                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20479                   min: 1 1;
20480                   align: 0.0 0.5;
20481                   text_class: "list_item";
20482                }
20483             }
20484             description { state: "selected" 0.0;
20485                inherit: "default" 0.0;
20486                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20487             }
20488             GENLIST_DESCRIPTION_FLIP_ENABLED
20489          }
20490          part { name: "elm.padding.text1.right";
20491             clip_to: "disclip";
20492             type: RECT;
20493             scale: 1;
20494             description { state: "default" 0.0;
20495                min: GENLIST_SIZE_16_INC 0;
20496                fixed: 1 0;
20497                visible: 0;
20498                rel1 {
20499                   relative: 1.0 0.0;
20500                   to_x: "elm.text.1";
20501                }
20502                rel2.to_x: "elm.text.1";
20503                align: 0.0 0.0;
20504             }
20505          }
20506          part { name: "elm.icon";
20507             clip_to: "disclip";
20508             type: SWALLOW;
20509             scale: 1;
20510             description { state: "default" 0.0;
20511                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20512                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20513                fixed: 1 1;
20514                rel1 {
20515                   relative: 1.0 1.0;
20516                   to_x: "elm.padding.text1.right";
20517                   to_y: "elm.text.2";
20518                }
20519                rel2 {
20520                   relative: 1.0 0.0;
20521                   to_x: "elm.padding.text1.right";
20522                   to_y: "elm.padding.bottom";
20523                }
20524                align: 0.0 0.5;
20525             }
20526             GENLIST_DESCRIPTION_FLIP_ENABLED
20527          }
20528          GENLIST_PART_FLIP
20529          GENLIST_PART_DISCLIP
20530       }
20531       programs {
20532          // signal: elm,state,%s,active
20533          //   a "check" item named %s went active
20534          // signal: elm,state,%s,passive
20535          //   a "check" item named %s went passive
20536          // default is passive
20537          program { name: "go_active";
20538             signal: "elm,state,selected";
20539             source: "elm";
20540             action: STATE_SET "selected" 0.0;
20541             target: "bg_image";
20542             target: "elm.text.1";
20543             target: "elm.text.2";
20544             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20545          }
20546          program { name: "go_passive";
20547             signal: "elm,state,unselected";
20548             source: "elm";
20549             action: STATE_SET "default" 0.0;
20550             target: "bg_image";
20551             target: "elm.text.1";
20552             target: "elm.text.2";
20553             transition: LINEAR 0.1;
20554          }
20555          program { name: "go_disabled";
20556             signal: "elm,state,disabled";
20557             source: "elm";
20558             action: STATE_SET "disabled" 0.0;
20559             target: "disclip";
20560          }
20561          program { name: "go_enabled";
20562             signal: "elm,state,enabled";
20563             source: "elm";
20564             action: STATE_SET "default" 0.0;
20565             target: "disclip";
20566          }
20567          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20568          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20569       }
20570    }
20571
20572    // 2.4.2.19
20573    group { name: "elm/genlist/item/dialogue/2text.1icon.9/default";
20574       alias: "elm/genlist/item_odd/dialogue/2text.1icon.9/default";
20575       alias: "elm/genlist/item_compress/dialogue/2text.1icon.9/default";
20576       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.9/default";
20577       alias: "elm/layout/dialogue/2text.1icon.9";
20578       data.item: "stacking" "above";
20579       data.item: "selectraise" "on";
20580       data.item: "texts" "elm.text.1 elm.text.2";
20581       data.item: "contents" "elm.icon.1";
20582       data.item: "flips" "elm.flip.content";
20583       images {
20584          image: "00_list_bar_press_1x80.png" COMP;
20585       }
20586       parts {
20587          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20588          GENLIST_PART_DIALOGUE_BG_IMAGE
20589          GENLIST_PART_BOTTOM_LINE
20590          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20591          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20592          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20593          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20594          GENLIST_PART_DIALOGUE_ITEM
20595          GENLIST_PART_DIALOGUE_RIGHT_LINE
20596          part { name: "elm.icon.1";
20597             clip_to: "disclip";
20598             type: SWALLOW;
20599             scale: 1;
20600             description { state: "default" 0.0;
20601                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20602                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20603                fixed: 1 1;
20604                rel1 {
20605                   relative: 1.0 1.0;
20606                   to_x: "elm.padding.left";
20607                   to_y: "elm.text.1";
20608                }
20609                rel2 {
20610                   relative: 1.0 0.0;
20611                   to_x: "elm.padding.left";
20612                   to_y: "elm.padding.bottom";
20613                }
20614                align: 0.0 0.5;
20615             }
20616             GENLIST_DESCRIPTION_FLIP_ENABLED
20617          }
20618          part { name: "elm.padding.icon1.right";
20619             clip_to: "disclip";
20620             type: RECT;
20621             scale: 1;
20622             description { state: "default" 0.0;
20623                min: GENLIST_PADDING_16_INC 0;
20624                fixed: 1 0;
20625                rel1 {
20626                   relative: 1.0 0.0;
20627                   to_x: "elm.icon.1";
20628                }
20629                rel2.to_x: "elm.icon.1";
20630                align: 0.0 0.0;
20631                visible: 0;
20632             }
20633          }
20634          part { name: "elm.text.1";
20635             clip_to: "disclip";
20636             type: TEXT;
20637             mouse_events: 0;
20638             scale: 1;
20639             description { state: "default" 0.0;
20640                min: 0 GENLIST_SIZE_61_INC;
20641                fixed: 0 1;
20642                rel1 {
20643                   relative: 1.0 1.0;
20644                   to_x: "elm.padding.left";
20645                   to_y: "elm.padding.top";
20646                }
20647                rel2 {
20648                   relative: 0.0 1.0;
20649                   to_x: "elm.padding.right";
20650                   to_y: "elm.padding.top";
20651                }
20652                align: 0.0 0.0;
20653                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
20654                text {
20655                   font: "SLP:style=Roman";
20656                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
20657                   min: 0 1;
20658                   align: 0.0 0.5;
20659                   text_class: "list_item";
20660                }
20661             }
20662             description { state: "selected" 0.0;
20663                inherit: "default" 0.0;
20664                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20665             }
20666             GENLIST_DESCRIPTION_FLIP_ENABLED
20667          }
20668          part { name: "elm.text.2";
20669             clip_to: "disclip";
20670             type: TEXT;
20671             mouse_events: 0;
20672             scale: 1;
20673             description { state: "default" 0.0;
20674                rel1 {
20675                   relative: 1.0 1.0;
20676                   to_x: "elm.padding.icon1.right";
20677                   to_y: "elm.text.1";
20678                }
20679                rel2 {
20680                   relative: 0.0 0.0;
20681                   to_x: "elm.padding.right";
20682                   to_y: "elm.padding.bottom";
20683                }
20684                color: GENLIST_LIST_SUB_TEXT_SETTINGS_COLOR;
20685                text {
20686                   font: "SLP:style=Medium";
20687                   size: GENLIST_FONT_32_INC;
20688                   min: 0 1;
20689                   align: 0.0 0.5;
20690                   text_class: "slp_medium";
20691                }
20692             }
20693             description { state: "selected" 0.0;
20694                inherit: "default" 0.0;
20695                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
20696             }
20697             GENLIST_DESCRIPTION_FLIP_ENABLED
20698          }
20699          GENLIST_PART_FLIP
20700          GENLIST_PART_DISCLIP
20701       }
20702       programs {
20703          // signal: elm,state,%s,active
20704          //   a "check" item named %s went active
20705          // signal: elm,state,%s,passive
20706          //   a "check" item named %s went passive
20707          // default is passive
20708          program { name: "go_active";
20709             signal: "elm,state,selected";
20710             source: "elm";
20711             action: STATE_SET "selected" 0.0;
20712             target: "bg_image";
20713             target: "elm.text.1";
20714             target: "elm.text.2";
20715          }
20716          program { name: "go_passive";
20717             signal: "elm,state,unselected";
20718             source: "elm";
20719             action: STATE_SET "default" 0.0;
20720             target: "bg_image";
20721             target: "elm.text.1";
20722             target: "elm.text.2";
20723             transition: LINEAR 0.1;
20724          }
20725          program { name: "go_disabled";
20726             signal: "elm,state,disabled";
20727             source: "elm";
20728             action: STATE_SET "disabled" 0.0;
20729             target: "disclip";
20730          }
20731          program { name: "go_enabled";
20732             signal: "elm,state,enabled";
20733             source: "elm";
20734             action: STATE_SET "default" 0.0;
20735             target: "disclip";
20736          }
20737       }
20738    }
20739
20740 // 4.3.1
20741    group { name: "elm/genlist/item/dialogue/bg/2text.2icon/default";
20742       alias: "elm/genlist/item_odd/dialogue/bg/2text.2icon/default";
20743       alias: "elm/genlist/item_compress/dialogue/bg/2text.2icon/default";
20744       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.2icon/default";
20745       alias: "elm/layout/dialogue/bg/2text.2icon";
20746       data.item: "stacking" "above";
20747       data.item: "selectraise" "on";
20748       data.item: "texts" "elm.text.1 elm.text.2";
20749       data.item: "contents" "elm.icon.1 elm.icon.2";
20750       images {
20751           image: "00_list_thumbnail_bg.png" COMP;
20752       }
20753       parts {
20754          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
20755          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_48_INC )
20756          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_48_INC )
20757          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20758          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20759          part { name: "elm.icon1.bg";
20760             scale: 1;
20761             description { state: "default" 0.0;
20762                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
20763                fixed: 1 1;
20764                align: 0.0 0.52;
20765                rel1 {
20766                   relative: 1.0 0.5;
20767                   to_x: "elm.padding.left";
20768                }
20769                rel2 {
20770                   relative: 1.0 0.5;
20771                   to_x: "elm.padding.left";
20772                }
20773                image {
20774                   normal: "00_list_thumbnail_bg.png";
20775                   border: 1 1 1 1;
20776                   border_scale: 1;
20777                   middle: NONE;
20778                }
20779             }
20780          }
20781          part { name: "elm.icon.1";
20782             type: SWALLOW;
20783             description { state: "default" 0.0;
20784                rel1.to: "elm.icon1.bg";
20785                rel2.to: "elm.icon1.bg";
20786             }
20787          }
20788          part { name: "elm.padding.icon1.right";
20789             type: RECT;
20790             mouse_events: 0;
20791             scale: 1;
20792             description { state: "default" 0.0;
20793                min: GENLIST_PADDING_24_INC 0;
20794                fixed: 1 0;
20795                rel1 {
20796                    relative: 1.0 0.0;
20797                    to_x: "elm.icon1.bg";
20798                }
20799                rel2.to_x: "elm.icon1.bg";
20800                visible: 0;
20801                align: 0.0 0.5;
20802             }
20803          }
20804          part { name: "elm.icon.2";
20805             type: SWALLOW;
20806             scale: 1;
20807             description { state: "default" 0.0;
20808                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
20809                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
20810                fixed: 1 1;
20811                rel1 {
20812                   relative: 0.0 0.5;
20813                   to_x: "elm.padding.right";
20814                }
20815                rel2 {
20816                   relative: 0.0 0.5;
20817                   to_x: "elm.padding.right";
20818                }
20819                align: 1.0 0.5;
20820             }
20821          }
20822          part { name: "elm.padding.icon2.right";
20823             type: RECT;
20824             mouse_events: 0;
20825             scale: 1;
20826             description { state: "default" 0.0;
20827                min: GENLIST_PADDING_16_INC 0;
20828                fixed: 1 0;
20829                rel1.to_x: "elm.icon.2";
20830                rel2 {
20831                   relative: 0.0 1.0;
20832                   to_x: "elm.icon.2";
20833                }
20834                rel2.to_x: "elm.icon.2";
20835                visible: 0;
20836                align: 1.0 0.5;
20837             }
20838          }
20839          part { name: "elm.text.1";
20840             clip_to: "disclip";
20841             type: TEXT;
20842             mouse_events: 0;
20843             scale: 1;
20844             description { state: "default" 0.0;
20845                min: 0 GENLIST_SIZE_54_INC;
20846                fixed: 0 1;
20847                align: 0 0;
20848                rel1 {
20849                   relative: 1.0 1.0;
20850                   to_x: "elm.padding.icon1.right";
20851                   to_y: "elm.padding.top";
20852                }
20853                rel2 {
20854                   relative: 0.0 1.0;
20855                   to_x: "elm.padding.icon2.right";
20856                   to_y: "elm.padding.top";
20857                }
20858                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
20859                text {
20860                   font: "SLP:style=Roman";
20861                   size: GENLIST_FONT_48_INC;
20862                   align: 0.0 0.5;
20863                   text_class: "list_item";
20864                }
20865             }
20866          }
20867          part { name: "elm.padding.text.1.bottom";
20868             type: RECT;
20869             mouse_events: 0;
20870             scale: 1;
20871             description { state: "default" 0.0;
20872                min: 0 GENLIST_PADDING_8_INC;
20873                fixed: 0 1;
20874                rel1 {
20875                    relative: 0.0 1.0;
20876                    to_y: "elm.text.1";
20877                }
20878                rel2.to_y: "elm.text.1";
20879                visible: 0;
20880                align: 0.0 0.0;
20881             }
20882          }
20883          part { name: "elm.text.2";
20884             clip_to: "disclip";
20885             type: TEXT;
20886             mouse_events: 0;
20887             scale: 1;
20888             description { state: "default" 0.0;
20889                rel1 {
20890                   relative: 1.0 1.0;
20891                   to_x: "elm.padding.icon1.right";
20892                   to_y: "elm.padding.text.1.bottom";
20893                }
20894                rel2 {
20895                   relative: 0.0 0.0;
20896                   to_x: "elm.padding.icon2.right";
20897                   to_y: "elm.padding.bottom";
20898                }
20899                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
20900                text {
20901                   font: "SLP:style=Medium";
20902                   size: GENLIST_FONT_32_INC;
20903                   align: 0.0 0.5;
20904                   text_class: "slp_medium";
20905                }
20906             }
20907          }
20908          GENLIST_PART_DISCLIP
20909       }
20910       programs {
20911          // signal: elm,state,%s,active
20912          //   a "check" item named %s went active
20913          // signal: elm,state,%s,passive
20914          //   a "check" item named %s went passive
20915          // default is passive
20916          /*program { name: "go_active";
20917             signal: "elm,state,selected";
20918             source: "elm";
20919             action: STATE_SET "selected" 0.0;
20920             target: "elm.text";
20921             target: "elm.text.sub";
20922          }
20923          program { name: "go_passive";
20924             signal: "elm,state,unselected";
20925             source: "elm";
20926             action: STATE_SET "default" 0.0;
20927             target: "elm.text";
20928             target: "elm.text.sub";
20929             transition: LINEAR 0.1;
20930          }*/
20931          program { name: "go_disabled";
20932             signal: "elm,state,disabled";
20933             source: "elm";
20934             action: STATE_SET "disabled" 0.0;
20935             target: "disclip";
20936          }
20937          program { name: "go_enabled";
20938             signal: "elm,state,enabled";
20939             source: "elm";
20940             action: STATE_SET "default" 0.0;
20941             target: "disclip";
20942          }
20943       }
20944    }
20945
20946 // 4.3.2
20947    group { name: "elm/genlist/item/dialogue/bg/3text.2icon/default";
20948       alias: "elm/genlist/item_odd/dialogue/bg/3text.2icon/default";
20949       alias: "elm/genlist/item_compress/dialogue/bg/3text.2icon/default";
20950       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.2icon/default";
20951       alias: "elm/layout/dialogue/bg/3text.2icon";
20952       data.item: "stacking" "above";
20953       data.item: "selectraise" "on";
20954       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
20955       data.item: "contents" "elm.icon.1 elm.icon.2";
20956       images {
20957           image: "00_list_thumbnail_bg.png" COMP;
20958       }
20959       parts {
20960          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_142_INC )
20961          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
20962          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
20963          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
20964          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20965          part { name: "elm.padding.icon.bottom";
20966             type: RECT;
20967             mouse_events: 0;
20968             scale: 1;
20969             description { state: "default" 0.0;
20970                min: 0 1;
20971                fixed: 0 1;
20972                rel1 {
20973                   relative: 0.0 1.0;
20974                   to_x: "elm.padding.right";
20975                }
20976                rel2 {
20977                   relative: 0.0 1.0;
20978                   to_x: "elm.padding.right";
20979                }
20980                align: 1.0 1.0;
20981                visible: 0;
20982             }
20983          }
20984          part { name: "elm.icon1.bg";
20985             scale: 1;
20986             description { state: "default" 0.0;
20987                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
20988                fixed: 1 1;
20989                align: 1.0 0.0;
20990                rel1 {
20991                   relative: 0.0 0.0;
20992                   to_x: "elm.padding.right";
20993                }
20994                rel2 {
20995                   relative: 0.0 0.0;
20996                   to_x: "elm.padding.right";
20997                   to_y: "elm.padding.icon.bottom";
20998                }
20999                image {
21000                   normal: "00_list_thumbnail_bg.png";
21001                   border: 1 1 1 1;
21002                   border_scale: 1;
21003                   middle: NONE;
21004                }
21005             }
21006          }
21007          part { name: "elm.icon.1";
21008             type: SWALLOW;
21009             description { state: "default" 0.0;
21010                rel1.to: "elm.icon1.bg";
21011                rel2.to: "elm.icon1.bg";
21012             }
21013          }
21014          part { name: "elm.padding.icon1.left";
21015             type: RECT;
21016             mouse_events: 0;
21017             scale: 1;
21018             description { state: "default" 0.0;
21019                min: GENLIST_PADDING_16_INC 0;
21020                fixed: 1 0;
21021                rel1 {
21022                    relative: 0.0 0.0;
21023                    to_x: "elm.icon1.bg";
21024                }
21025                rel2 {
21026                    relative: 0.0 1.0;
21027                    to_x: "elm.icon1.bg";
21028                }
21029                visible: 0;
21030                align: 0.0 0.5;
21031             }
21032          }
21033          part { name: "elm.icon.2";
21034             type: SWALLOW;
21035             scale: 1;
21036             description { state: "default" 0.0;
21037                min: GENLIST_ICON_SIZE_64 GENLIST_ICON_SIZE_64;
21038                max: GENLIST_ICON_SIZE_64 GENLIST_ICON_SIZE_64;
21039                fixed: 1 1;
21040                rel1 {
21041                   relative: 0.0 0.5;
21042                   to_x: "elm.padding.icon1.left";
21043                }
21044                rel2 {
21045                   relative: 0.0 0.5;
21046                   to_x: "elm.padding.icon1.left";
21047                }
21048                align: 1.0 0.5;
21049             }
21050          }
21051          part { name: "elm.padding.icon2.left";
21052             type: RECT;
21053             mouse_events: 0;
21054             scale: 1;
21055             description { state: "default" 0.0;
21056                min: GENLIST_PADDING_16_INC 0;
21057                fixed: 1 0;
21058                rel1.to_x: "elm.icon.2";
21059                rel2 {
21060                   relative: 0.0 1.0;
21061                   to_x: "elm.icon.2";
21062                }
21063                rel2.to_x: "elm.icon.2";
21064                visible: 0;
21065                align: 1.0 0.5;
21066             }
21067          }
21068          part { name: "elm.text.1";
21069             clip_to: "disclip";
21070             type: TEXT;
21071             mouse_events: 0;
21072             scale: 1;
21073             description { state: "default" 0.0;
21074                min: 0 GENLIST_SIZE_54_INC;
21075                fixed: 0 1;
21076                align: 0 0;
21077                rel1 {
21078                   relative: 1.0 1.0;
21079                   to_x: "elm.padding.left";
21080                   to_y: "elm.padding.top";
21081                }
21082                rel2 {
21083                   relative: 0.0 1.0;
21084                   to_x: "elm.padding.icon2.left";
21085                   to_y: "elm.padding.top";
21086                }
21087                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
21088                text {
21089                   font: "SLP:style=Roman";
21090                   size: GENLIST_FONT_48_INC;
21091                   align: 0.0 0.5;
21092                   text_class: "list_item";
21093                }
21094             }
21095          }
21096          part { name: "elm.padding.text.1.bottom";
21097             type: RECT;
21098             mouse_events: 0;
21099             scale: 1;
21100             description { state: "default" 0.0;
21101                min: 0 GENLIST_PADDING_8_INC;
21102                fixed: 0 1;
21103                rel1 {
21104                    relative: 0.0 1.0;
21105                    to_y: "elm.text.1";
21106                }
21107                rel2.to_y: "elm.text.1";
21108                visible: 0;
21109                align: 0.0 0.0;
21110             }
21111          }
21112          part { name: "elm.text.2";
21113             clip_to: "disclip";
21114             type: TEXT;
21115             mouse_events: 0;
21116             scale: 1;
21117             description { state: "default" 0.0;
21118                rel1 {
21119                   relative: 1.0 1.0;
21120                   to_x: "elm.padding.left";
21121                   to_y: "elm.padding.text.1.bottom";
21122                }
21123                rel2 {
21124                   relative: 0.0 0.0;
21125                   to_x: "elm.padding.icon2.left";
21126                   to_y: "elm.text.3";
21127                }
21128                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
21129                text {
21130                   font: "SLP:style=Medium";
21131                   size: GENLIST_FONT_32_INC;
21132                   align: 0.0 0.5;
21133                   text_class: "slp_medium";
21134                }
21135             }
21136          }
21137          part { name: "elm.text.3";
21138             clip_to: "disclip";
21139             type: TEXT;
21140             mouse_events: 0;
21141             scale: 1;
21142             description { state: "default" 0.0;
21143                min: 0 GENLIST_ICON_SMALL_SIZE;
21144                fixed: 0 1;
21145                align: 0 1;
21146                rel1 {
21147                   relative: 1.0 0.0;
21148                   to_x: "elm.padding.left";
21149                   to_y: "elm.padding.bottom";
21150                }
21151                rel2 {
21152                   relative: 0.0 0.0;
21153                   to_x: "elm.padding.icon2.left";
21154                   to_y: "elm.padding.bottom";
21155                }
21156                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
21157                text {
21158                   font: "SLP:style=Medium";
21159                   size: GENLIST_FONT_32_INC;
21160                   align: 0.0 0.5;
21161                   text_class: "slp_medium";
21162                }
21163             }
21164          }
21165          GENLIST_PART_DISCLIP
21166       }
21167       programs {
21168          // signal: elm,state,%s,active
21169          //   a "check" item named %s went active
21170          // signal: elm,state,%s,passive
21171          //   a "check" item named %s went passive
21172          // default is passive
21173          /*program { name: "go_active";
21174             signal: "elm,state,selected";
21175             source: "elm";
21176             action: STATE_SET "selected" 0.0;
21177             target: "elm.text";
21178             target: "elm.text.sub";
21179          }
21180          program { name: "go_passive";
21181             signal: "elm,state,unselected";
21182             source: "elm";
21183             action: STATE_SET "default" 0.0;
21184             target: "elm.text";
21185             target: "elm.text.sub";
21186             transition: LINEAR 0.1;
21187          }*/
21188          program { name: "go_disabled";
21189             signal: "elm,state,disabled";
21190             source: "elm";
21191             action: STATE_SET "disabled" 0.0;
21192             target: "disclip";
21193          }
21194          program { name: "go_enabled";
21195             signal: "elm,state,enabled";
21196             source: "elm";
21197             action: STATE_SET "default" 0.0;
21198             target: "disclip";
21199          }
21200       }
21201    }
21202
21203 // 4.3.3
21204    group { name: "elm/genlist/item/dialogue/bg/5text.2icon/default";
21205       alias: "elm/genlist/item_odd/dialogue/bg/5text.2icon/default";
21206       alias: "elm/genlist/item_compress/dialogue/bg/5text.2icon/default";
21207       alias: "elm/genlist/item_compress_odd/dialogue/bg/5text.2icon/default";
21208       alias: "elm/layout/dialogue/bg/5text.2icon";
21209       data.item: "stacking" "above";
21210       data.item: "selectraise" "on";
21211       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
21212       data.item: "contents" "elm.icon.1 elm.icon.2";
21213       images {
21214           image: "00_list_thumbnail_bg.png" COMP;
21215       }
21216       parts {
21217          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_182_INC )
21218          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_14_INC )
21219          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_14_INC )
21220          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21221          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21222          part { name: "elm.icon1.bg";
21223             scale: 1;
21224             description { state: "default" 0.0;
21225                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
21226                fixed: 1 1;
21227                align: 0.0 0.5;
21228                rel1 {
21229                   relative: 1.0 0.5;
21230                   to_x: "elm.padding.left";
21231                }
21232                rel2 {
21233                   relative: 1.0 0.5;
21234                   to_x: "elm.padding.left";
21235                }
21236                image {
21237                   normal: "00_list_thumbnail_bg.png";
21238                   border: 1 1 1 1;
21239                   border_scale: 1;
21240                   middle: NONE;
21241                }
21242             }
21243          }
21244          part { name: "elm.icon.1";
21245             type: SWALLOW;
21246             description { state: "default" 0.0;
21247                rel1.to: "elm.icon1.bg";
21248                rel2.to: "elm.icon1.bg";
21249             }
21250          }
21251          part { name: "elm.padding.icon1.right";
21252             type: RECT;
21253             mouse_events: 0;
21254             scale: 1;
21255             description { state: "default" 0.0;
21256                min: GENLIST_PADDING_16_INC 0;
21257                fixed: 1 0;
21258                rel1 {
21259                    relative: 1.0 0.0;
21260                    to_x: "elm.icon1.bg";
21261                }
21262                rel2.to_x: "elm.icon1.bg";
21263                visible: 0;
21264                align: 0.0 0.5;
21265             }
21266          }
21267          part { name: "elm.text.1";
21268             clip_to: "disclip";
21269             type: TEXT;
21270             mouse_events: 0;
21271             scale: 1;
21272             description { state: "default" 0.0;
21273                min: 0 GENLIST_SIZE_38_INC;
21274                fixed: 0 1;
21275                rel1 {
21276                   relative: 1.0 1.0;
21277                   to_x: "elm.padding.icon1.right";
21278                   to_y: "elm.padding.top";
21279                }
21280                rel2 {
21281                   relative: 0.0 1.0;
21282                   to_x: "elm.padding.right";
21283                   to_y: "elm.padding.top";
21284                }
21285                align: 0.0 0.0;
21286                color: GENLIST_DIALOGUE_FONT_APPS_NAME_COLOR_INC;
21287                text {
21288                   font: "SLP:style=Medium";
21289                   size: GENLIST_FONT_32_INC;
21290                   align: 0.0 0.5;
21291                   text_class: "list_item";
21292                }
21293             }
21294          }
21295          part { name: "elm.text.2";
21296             clip_to: "disclip";
21297             type: TEXT;
21298             mouse_events: 0;
21299             scale: 1;
21300             description { state: "default" 0.0;
21301                min: 0 GENLIST_SIZE_38_INC;
21302                fixed: 0 1;
21303                rel1 {
21304                   relative: 1.0 1.0;
21305                   to_x: "elm.padding.icon1.right";
21306                   to_y: "elm.text.1";
21307                }
21308                rel2 {
21309                   relative: 0.0 1.0;
21310                   to_x: "elm.padding.right";
21311                   to_y: "elm.text.1";
21312                }
21313                align: 0.0 0.0;
21314                color: GENLIST_DIALOGUE_FONT_APPS_INC_COLOR_INC;
21315                text {
21316                   font: "SLP:style=Medium";
21317                   size: GENLIST_FONT_28_INC;
21318                   align: 0.0 0.5;
21319                   text_class: "slp_medium";
21320                }
21321             }
21322          }
21323          part { name: "elm.icon.2";
21324             clip_to: "disclip";
21325             type: SWALLOW;
21326             mouse_events: 0;
21327             scale: 1;
21328             description { state: "default" 0.0;
21329                fixed: 1 1;
21330                rel1 {
21331                   relative: 1.0 0.0;
21332                   to_x: "elm.padding.icon1.right";
21333                   to_y: "elm.text.3";
21334                }
21335                rel2 {
21336                   relative: 1.0 1.0;
21337                   to_x: "elm.padding.icon1.right";
21338                   to_y: "elm.text.3";
21339                }
21340                align: 0.0 0.5;
21341             }
21342          }
21343          part { name: "elm.padding.icon2.right";
21344             type: RECT;
21345             mouse_events: 0;
21346             scale: 1;
21347             description { state: "default" 0.0;
21348                min: GENLIST_PADDING_16_INC 0;
21349                fixed: 1 0;
21350                rel1 {
21351                    relative: 1.0 0.0;
21352                    to_x: "elm.icon.2";
21353                }
21354                rel2.to_x: "elm.icon.2";
21355                visible: 0;
21356                align: 0.0 0.5;
21357             }
21358          }
21359          part { name: "elm.text.3";
21360             clip_to: "disclip";
21361             type: TEXT;
21362             mouse_events: 0;
21363             scale: 1;
21364             description { state: "default" 0.0;
21365                min: 0 GENLIST_SIZE_38_INC;
21366                fixed: 0 1;
21367                rel1 {
21368                   relative: 1.0 1.0;
21369                   to_x: "elm.padding.icon2.right";
21370                   to_y: "elm.text.2";
21371                }
21372                rel2 {
21373                   relative: 0.0 1.0;
21374                   to_x: "elm.padding.right";
21375                   to_y: "elm.text.2";
21376                }
21377                align: 0.0 0.0;
21378                color: GENLIST_DIALOGUE_FONT_APPS_RATING_COLOR_INC;
21379                text {
21380                   font: "SLP:style=Medium";
21381                   size: GENLIST_FONT_28_INC;
21382                   align: 0.0 0.5;
21383                   text_class: "slp_medium";
21384                }
21385             }
21386          }
21387          part { name: "elm.text.4";
21388             clip_to: "disclip";
21389             type: TEXT;
21390             mouse_events: 0;
21391             scale: 1;
21392             description { state: "default" 0.0;
21393                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
21394                fixed: 1 1;
21395                align: 0 1;
21396                rel1 {
21397                   relative: 1.0 0.0;
21398                   to_x: "elm.padding.icon1.right";
21399                   to_y: "elm.padding.bottom";
21400                }
21401                rel2 {
21402                   relative: 1.0 0.0;
21403                   to_x: "elm.padding.icon1.right";
21404                   to_y: "elm.padding.bottom";
21405                }
21406                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_ORIGINAL_COLOR_INC;
21407                text {
21408                   font: "SLP:style=Medium";
21409                   size: GENLIST_FONT_28_INC;
21410                   align: 0.0 0.5;
21411                   text_class: "slp_medium";
21412                }
21413             }
21414          }
21415          part { name: "elm.padding.text4.right";
21416             type: RECT;
21417             mouse_events: 0;
21418             scale: 1;
21419             description { state: "default" 0.0;
21420                min: GENLIST_PADDING_16_INC 0;
21421                fixed: 1 0;
21422                rel1 {
21423                    relative: 1.0 0.0;
21424                    to_x: "elm.text.4";
21425                }
21426                rel2.to_x: "elm.text.4";
21427                visible: 0;
21428                align: 0.0 0.5;
21429             }
21430          }
21431          part { name: "elm.text.5";
21432             clip_to: "disclip";
21433             type: TEXT;
21434             mouse_events: 0;
21435             scale: 1;
21436             description { state: "default" 0.0;
21437                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
21438                fixed: 1 1;
21439                align: 0 1;
21440                rel1 {
21441                   relative: 1.0 0.0;
21442                   to_x: "elm.padding.text4.right";
21443                   to_y: "elm.padding.bottom";
21444                }
21445                rel2 {
21446                   relative: 1.0 0.0;
21447                   to_x: "elm.padding.text4.right";
21448                   to_y: "elm.padding.bottom";
21449                }
21450                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_SALE_COLOR_INC;
21451                text {
21452                   font: "SLP:style=Medium";
21453                   size: GENLIST_FONT_28_INC;
21454                   align: 0.0 0.5;
21455                   text_class: "slp_medium";
21456                }
21457             }
21458          }
21459          GENLIST_PART_DISCLIP
21460       }
21461       programs {
21462          // signal: elm,state,%s,active
21463          //   a "check" item named %s went active
21464          // signal: elm,state,%s,passive
21465          //   a "check" item named %s went passive
21466          // default is passive
21467          /*program { name: "go_active";
21468             signal: "elm,state,selected";
21469             source: "elm";
21470             action: STATE_SET "selected" 0.0;
21471             target: "elm.text";
21472             target: "elm.text.sub";
21473          }
21474          program { name: "go_passive";
21475             signal: "elm,state,unselected";
21476             source: "elm";
21477             action: STATE_SET "default" 0.0;
21478             target: "elm.text";
21479             target: "elm.text.sub";
21480             transition: LINEAR 0.1;
21481          }*/
21482          program { name: "go_disabled";
21483             signal: "elm,state,disabled";
21484             source: "elm";
21485             action: STATE_SET "disabled" 0.0;
21486             target: "disclip";
21487          }
21488          program { name: "go_enabled";
21489             signal: "elm,state,enabled";
21490             source: "elm";
21491             action: STATE_SET "default" 0.0;
21492             target: "disclip";
21493          }
21494       }
21495    }
21496
21497    // 4.1.9
21498    group { name: "elm/genlist/item/dialogue/1icon/default";
21499       alias: "elm/genlist/item_odd/dialogue/1icon/default";
21500       alias: "elm/genlist/item_compress/dialogue/1icon/default";
21501       alias: "elm/genlist/item_compress_odd/dialogue/1icon/default";
21502       alias: "elm/layout/dialogue/1icon";
21503       data.item: "stacking" "above";
21504       data.item: "selectraise" "on";
21505       data.item: "contents" "elm.icon";
21506
21507       parts {
21508          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
21509          GENLIST_PART_DIALOGUE_BG_IMAGE
21510          GENLIST_PART_BOTTOM_LINE
21511          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21512          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21513          GENLIST_PART_DIALOGUE_ITEM
21514          GENLIST_PART_DIALOGUE_RIGHT_LINE
21515          part { name: "elm.icon";
21516             clip_to: "disclip";
21517             type: SWALLOW;
21518             scale: 1;
21519             description { state: "default" 0.0;
21520                rel1 {
21521                   relative: 1.0 0.0;
21522                   to_x: "elm.padding.left";
21523                }
21524                rel2 {
21525                   relative: 0.0 1.0;
21526                   to_x: "elm.padding.right";
21527                }
21528             }
21529          }
21530          GENLIST_PART_DISCLIP
21531       }
21532       programs {
21533          // signal: elm,state,%s,active
21534          //   a "check" item named %s went active
21535          // signal: elm,state,%s,passive
21536          //   a "check" item named %s went passive
21537          // default is passive
21538          /*program { name: "go_active";
21539             signal: "elm,state,selected";
21540             source: "elm";
21541             action: STATE_SET "selected" 0.0;
21542             target: "bg_image";
21543             target: "elm.text";
21544          }
21545          program { name: "go_passive";
21546             signal: "elm,state,unselected";
21547             source: "elm";
21548             action: STATE_SET "default" 0.0;
21549             target: "bg_image";
21550             target: "elm.text";
21551             transition: LINEAR 0.1;
21552          }*/
21553          program { name: "go_disabled";
21554             signal: "elm,state,disabled";
21555             source: "elm";
21556             action: STATE_SET "disabled" 0.0;
21557             target: "disclip";
21558          }
21559          program { name: "go_enabled";
21560             signal: "elm,state,enabled";
21561             source: "elm";
21562             action: STATE_SET "default" 0.0;
21563             target: "disclip";
21564          }
21565       }
21566    }
21567
21568    group { name: "elm/genlist/item/dialogue/bg/1icon/default";
21569       alias: "elm/genlist/item_odd/dialogue/bg/1icon/default";
21570       alias: "elm/genlist/item_compress/dialogue/bg/1icon/default";
21571       alias: "elm/genlist/item_compress_odd/dialogue/bg/1icon/default";
21572       alias: "elm/layout/dialogue/bg/1icon";
21573       data.item: "stacking" "above";
21574       data.item: "selectraise" "on";
21575       data.item: "contents" "elm.icon";
21576
21577       parts {
21578          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
21579          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21580          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21581          part { name: "elm.icon";
21582             clip_to: "disclip";
21583             type: SWALLOW;
21584             scale: 1;
21585             description { state: "default" 0.0;
21586                rel1 {
21587                   relative: 1.0 0.0;
21588                   to_x: "elm.padding.left";
21589                }
21590                rel2 {
21591                   relative: 0.0 1.0;
21592                   to_x: "elm.padding.right";
21593                }
21594             }
21595          }
21596          GENLIST_PART_DISCLIP
21597       }
21598       programs {
21599          // signal: elm,state,%s,active
21600          //   a "check" item named %s went active
21601          // signal: elm,state,%s,passive
21602          //   a "check" item named %s went passive
21603          // default is passive
21604          program { name: "go_disabled";
21605             signal: "elm,state,disabled";
21606             source: "elm";
21607             action: STATE_SET "disabled" 0.0;
21608             target: "disclip";
21609          }
21610          program { name: "go_enabled";
21611             signal: "elm,state,enabled";
21612             source: "elm";
21613             action: STATE_SET "default" 0.0;
21614             target: "disclip";
21615          }
21616       }
21617    }
21618
21619    group { name: "elm/genlist/item/dialogue/bg/2icon/default";
21620       alias: "elm/genlist/item_odd/dialogue/bg/2icon/default";
21621       alias: "elm/genlist/item_compress/dialogue/bg/2icon/default";
21622       alias: "elm/genlist/item_compress_odd/dialogue/bg/2icon/default";
21623       alias: "elm/layout/dialogue/bg/2icon";
21624       data.item: "stacking" "above";
21625       data.item: "selectraise" "on";
21626       data.item: "contents" "elm.icon.1 elm.icon.2";
21627
21628       parts {
21629          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
21630          part { name: "elm.icon.1";
21631             clip_to: "disclip";
21632             type: SWALLOW;
21633             description { state: "default" 0.0;
21634                rel1.relative: 0.021 0.0;
21635                rel2.relative: 0.492 1.0;
21636             }
21637          }
21638          part { name: "elm.icon.2";
21639             clip_to: "disclip";
21640             type: SWALLOW;
21641             description { state: "default" 0.0;
21642                rel1.relative: 0.51 0.0;
21643                rel2.relative: 0.979 1.0;
21644             }
21645          }
21646          GENLIST_PART_DISCLIP
21647       }
21648       programs {
21649          // signal: elm,state,%s,active
21650          //   a "check" item named %s went active
21651          // signal: elm,state,%s,passive
21652          //   a "check" item named %s went passive
21653          // default is passive
21654          program { name: "go_disabled";
21655             signal: "elm,state,disabled";
21656             source: "elm";
21657             action: STATE_SET "disabled" 0.0;
21658             target: "disclip";
21659          }
21660          program { name: "go_enabled";
21661             signal: "elm,state,enabled";
21662             source: "elm";
21663             action: STATE_SET "default" 0.0;
21664             target: "disclip";
21665          }
21666       }
21667    }
21668
21669    group { name: "elm/genlist/item/dialogue/bg/3icon/default";
21670       alias: "elm/genlist/item_odd/dialogue/bg/3icon/default";
21671       alias: "elm/genlist/item_compress/dialogue/bg/3icon/default";
21672       alias: "elm/genlist/item_compress_odd/dialogue/bg/3icon/default";
21673
21674       alias: "elm/genlist/item/dialogue.3icon/default";
21675       alias: "elm/genlist/item_odd/dialogue.3icon/default";
21676       alias: "elm/genlist/item_compress/dialogue.3icon/default";
21677       alias: "elm/genlist/item_compress_odd/dialogue.3icon/default";
21678
21679       alias: "elm/layout/dialogue/bg/3icon";
21680       alias: "elm/layout/dialogue/dialogue.3icon";
21681
21682       data.item: "stacking" "above";
21683       data.item: "selectraise" "on";
21684       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
21685
21686       parts {
21687          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
21688          part { name: "elm.icon.1";
21689             clip_to: "disclip";
21690             type: SWALLOW;
21691             description { state: "default" 0.0;
21692                rel1.relative: 0.021 0.0;
21693                rel2.relative: 0.327 1.0;
21694             }
21695          }
21696          part { name: "elm.icon.2";
21697             clip_to: "disclip";
21698             type: SWALLOW;
21699             description { state: "default" 0.0;
21700                rel1.relative: 0.348 0.0;
21701                rel2.relative: 0.652 1.0;
21702             }
21703          }
21704          part { name: "elm.icon.3";
21705             clip_to: "disclip";
21706             type: SWALLOW;
21707             description { state: "default" 0.0;
21708                rel1.relative: 0.673 0.0;
21709                rel2.relative: 0.979 1.0;
21710             }
21711          }
21712          GENLIST_PART_DISCLIP
21713       }
21714       programs {
21715          // signal: elm,state,%s,active
21716          //   a "check" item named %s went active
21717          // signal: elm,state,%s,passive
21718          //   a "check" item named %s went passive
21719          // default is passive
21720          program { name: "go_disabled";
21721             signal: "elm,state,disabled";
21722             source: "elm";
21723             action: STATE_SET "disabled" 0.0;
21724             target: "disclip";
21725          }
21726          program { name: "go_enabled";
21727             signal: "elm,state,enabled";
21728             source: "elm";
21729             action: STATE_SET "default" 0.0;
21730             target: "disclip";
21731          }
21732       }
21733    }
21734
21735    group { name: "elm/genlist/item/dialogue.3icon.2/default";
21736       alias: "elm/genlist/item_odd/dialogue.3icon.2/default";
21737       alias: "elm/genlist/item_compress/dialogue.3icon.2/default";
21738       alias: "elm/genlist/item_compress_odd/dialogue.3icon.2/default";
21739       alias: "elm/layout/dialogue/dialogue.3icon.2";
21740       data.item: "stacking" "above";
21741       data.item: "selectraise" "on";
21742       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
21743
21744       parts {
21745          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_89_INC )
21746          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21747          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21748          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
21749          part { name: "elm.icon.1";
21750             clip_to: "disclip";
21751             type: SWALLOW;
21752             description { state: "default" 0.0;
21753                min: GENLIST_SIZE_234_INC 0;
21754                fixed: 1 0;
21755                rel1 {
21756                   relative: 0.0 1.0;
21757                   to_x: "elm.padding.right";
21758                   to_y: "elm.padding.top";
21759                }
21760                rel2 {
21761                   relative: 0.0 1.0;
21762                   to_x: "elm.padding.right";
21763                }
21764                align: 1.0 0.5;
21765             }
21766          }
21767          part { name: "elm.padding.icon.1.left";
21768             clip_to: "disclip";
21769             type: RECT;
21770             mouse_events: 0;
21771             scale: 1;
21772             description { state: "default" 0.0;
21773                min: GENLIST_PADDING_16_INC 0;
21774                fixed: 1 0;
21775                rel1.to_x: "elm.icon.1";
21776                rel2 {
21777                   relative: 0.0 1.0;
21778                   to_x: "elm.icon.1";
21779                }
21780                visible: 0;
21781                align: 1.0 0.5;
21782             }
21783          }
21784          part { name: "elm.icon.2";
21785             clip_to: "disclip";
21786             type: SWALLOW;
21787             description { state: "default" 0.0;
21788                min: GENLIST_SIZE_234_INC 0;
21789                fixed: 1 0;
21790                rel1 {
21791                   relative: 0.0 1.0;
21792                   to_x: "elm.padding.icon.1.left";
21793                   to_y: "elm.padding.top";
21794                }
21795                rel2 {
21796                   relative: 0.0 1.0;
21797                   to_x: "elm.padding.icon.1.left";
21798                }
21799                align: 1.0 0.5;
21800             }
21801          }
21802          part { name: "elm.padding.icon.2.left";
21803             clip_to: "disclip";
21804             type: RECT;
21805             mouse_events: 0;
21806             scale: 1;
21807             description { state: "default" 0.0;
21808                min: GENLIST_PADDING_16_INC 0;
21809                fixed: 1 0;
21810                rel1.to_x: "elm.icon.2";
21811                rel2 {
21812                   relative: 0.0 1.0;
21813                   to_x: "elm.icon.2";
21814                }
21815                visible: 0;
21816                align: 1.0 0.5;
21817             }
21818          }
21819          part { name: "elm.icon.3";
21820             clip_to: "disclip";
21821             type: SWALLOW;
21822             description { state: "default" 0.0;
21823                min: GENLIST_SIZE_234_INC 0;
21824                fixed: 1 0;
21825                rel1 {
21826                   relative: 0.0 1.0;
21827                   to_x: "elm.padding.icon.2.left";
21828                   to_y: "elm.padding.top";
21829                }
21830                rel2 {
21831                   relative: 0.0 1.0;
21832                   to_x: "elm.padding.icon.2.left";
21833                }
21834                align: 1.0 0.5;
21835             }
21836          }
21837          GENLIST_PART_DISCLIP
21838       }
21839       programs {
21840          // signal: elm,state,%s,active
21841          //   a "check" item named %s went active
21842          // signal: elm,state,%s,passive
21843          //   a "check" item named %s went passive
21844          // default is passive
21845          program { name: "go_disabled";
21846             signal: "elm,state,disabled";
21847             source: "elm";
21848             action: STATE_SET "disabled" 0.0;
21849             target: "disclip";
21850          }
21851          program { name: "go_enabled";
21852             signal: "elm,state,enabled";
21853             source: "elm";
21854             action: STATE_SET "default" 0.0;
21855             target: "disclip";
21856          }
21857       }
21858    }
21859
21860    group { name: "elm/genlist/item/dialogue.1title.1text.2/default";
21861       alias: "elm/genlist/item_odd/dialogue.1title.1text.2/default";
21862       alias: "elm/genlist/item_compress/dialogue.1title.1text.2/default";
21863       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.2/default";
21864       alias: "elm/layout/dialogue/dialogue.1title.1text.2";
21865       data.item: "stacking" "above";
21866       data.item: "selectraise" "on";
21867       data.item: "texts" "elm.title elm.text";
21868
21869       images {
21870           image: "00_list_img_check.png" COMP;
21871       }
21872
21873       parts {
21874          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
21875          GENLIST_PART_DIALOGUE_BG_IMAGE
21876          GENLIST_PART_BOTTOM_LINE
21877          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
21878          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21879          GENLIST_PART_DIALOGUE_ITEM
21880          GENLIST_PART_DIALOGUE_RIGHT_LINE
21881          part { name: "vertical_line";
21882             type: RECT;
21883             mouse_events: 0;
21884             description { state: "default" 0.0;
21885                min: 1 0;
21886                fixed: 1 0;
21887                color: GENLIST_PART_LIST_LINE_COLOR_INC;
21888                rel1 {
21889                   relative: 1.0 0.0;
21890                   to_x: "elm.title";
21891                }
21892                rel2.to_x: "elm.title";
21893                align: 0.0 0.5;
21894             }
21895          }
21896          part { name: "elm.title";
21897             type: TEXT;
21898             mouse_events: 0;
21899             scale: 1;
21900             description { state: "default" 0.0;
21901                min: GENLIST_SIZE_163_INC 0;
21902                fixed: 1 0;
21903                rel1 {
21904                   relative: 1.0  0.0;
21905                   to_x: "elm.padding.left";
21906                }
21907                rel2.to_x: "elm.padding.left";
21908                align: 0.0 0.5;
21909                color: GENLIST_MULTILINE_TEXT_COLOR;
21910                text {
21911                   font: "SLP:style=Medium";
21912                   size: GENLIST_MULTILINE_TEXT_SIZE;
21913                   min: 0 1;
21914                   align: 0.0 0.5;
21915                   text_class: "slp_medium";
21916                }
21917             }
21918          }
21919          part { name: "elm.padding.title.right";
21920             type: RECT;
21921             mouse_events: 0;
21922             scale: 1;
21923             description { state: "default" 0.0;
21924                min: GENLIST_PADDING_16_INC 0;
21925                fixed: 1 0;
21926                rel1 {
21927                    relative: 1.0 0.0;
21928                    to_x: "vertical_line";
21929                }
21930                rel2.to_x: "vertical_line";
21931                visible: 0;
21932                align: 0.0 0.5;
21933             }
21934          }
21935          part { name: "elm.text";
21936             clip_to: "disclip";
21937             type: TEXT;
21938             mouse_events: 0;
21939             scale: 1;
21940             description { state: "default" 0.0;
21941                rel1 {
21942                   relative: 1.0  0.0;
21943                   to_x: "elm.padding.title.right";
21944                }
21945                rel2.to_x: "elm.padding.title.right";
21946                align: 0.0 0.5;
21947                fixed: 1 1;
21948                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
21949                text {
21950                   font: "SLP:style=Roman";
21951                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
21952                   min: 1 1;
21953                   max: 1 1;
21954                   align: 0.0 0.5;
21955                   text_class: "list_item";
21956                }
21957             }
21958             description { state: "selected" 0.0;
21959                inherit: "default" 0.0;
21960                color: 217 147 26 255;
21961             }
21962          }
21963          part { name: "elm.padding.text.right";
21964             type: RECT;
21965             mouse_events: 0;
21966             scale: 1;
21967             description { state: "default" 0.0;
21968                min: GENLIST_PADDING_11_INC 0;
21969                fixed: 1 0;
21970                rel1 {
21971                    relative: 1.0 0.0;
21972                    to_x: "elm.text";
21973                }
21974                rel2.to_x: "elm.text";
21975                visible: 0;
21976                align: 0.0 0.5;
21977             }
21978          }
21979          part { name: "elm.image.check";
21980             clip_to: "disclip";
21981             mouse_events: 0;
21982             scale: 1;
21983             description { state: "default" 0.0;
21984                image.normal: "00_list_img_check.png";
21985                rel1 {
21986                   relative: 1.0 0.366;
21987                   to_x: "elm.padding.text.right";
21988                }
21989                rel2 {
21990                   relative: 3.857 0.648;
21991                   to_x: "elm.padding.text.right";
21992                }
21993                visible: 0;
21994             }
21995             description { state: "selected" 0.0;
21996                inherit: "default" 0.0;
21997                visible: 1;
21998             }
21999          }
22000          GENLIST_PART_DISCLIP
22001       }
22002       programs {
22003          // signal: elm,state,%s,active
22004          //   a "check" item named %s went active
22005          // signal: elm,state,%s,passive
22006          //   a "check" item named %s went passive
22007          // default is passive
22008          program { name: "go_active";
22009             signal: "elm,state,selected";
22010             source: "elm";
22011             action: STATE_SET "selected" 0.0;
22012             target: "elm.text";
22013             target: "elm.image.check";
22014             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
22015          }
22016          program { name: "go_passive";
22017             signal: "elm,state,unselected";
22018             source: "elm";
22019             action: STATE_SET "default" 0.0;
22020             target: "elm.text";
22021             target: "elm.image.check";
22022             transition: LINEAR 0.1;
22023          }
22024          program { name: "go_disabled";
22025             signal: "elm,state,disabled";
22026             source: "elm";
22027             action: STATE_SET "disabled" 0.0;
22028             target: "disclip";
22029          }
22030          program { name: "go_enabled";
22031             signal: "elm,state,enabled";
22032             source: "elm";
22033             action: STATE_SET "default" 0.0;
22034             target: "disclip";
22035          }
22036          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
22037       }
22038    }
22039
22040    group { name: "elm/genlist/item/dialogue/1title.4text/default";
22041       alias: "elm/genlist/item_odd/dialogue/1title.4text/default";
22042       alias: "elm/genlist/item_compress/dialogue/1title.4text/default";
22043       alias: "elm/genlist/item_compress_odd/dialogue/1title.4text/default";
22044
22045       alias: "elm/genlist/item/dialogue.1title.4text/default";
22046       alias: "elm/genlist/item_odd/dialogue.1title.4text/default";
22047       alias: "elm/genlist/item_compress/dialogue.1title.4text/default";
22048       alias: "elm/genlist/item_compress_odd/dialogue.1title.4text/default";
22049
22050       alias: "elm/layout/dialogue/1title.4text";
22051
22052       data.item: "stacking" "above";
22053       data.item: "selectraise" "on";
22054       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4";
22055
22056       parts {
22057          GENLIST_PART_BASE( GENLIST_HEIGHT_454_INC )
22058          GENLIST_PART_DIALOGUE_BG_IMAGE
22059          GENLIST_PART_BOTTOM_LINE
22060          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
22061          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22062          GENLIST_PART_DIALOGUE_ITEM
22063          GENLIST_PART_DIALOGUE_RIGHT_LINE
22064          part { name: "vertical_line";
22065             type: RECT;
22066             mouse_events: 0;
22067             description { state: "default" 0.0;
22068                min: 1 0;
22069                fixed: 1 0;
22070                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22071                rel1 {
22072                   relative: 1.0 0.0;
22073                   to_x: "elm.title";
22074                }
22075                rel2.to_x: "elm.title";
22076                align: 0.0 0.5;
22077             }
22078          }
22079          part { name: "center1_line";
22080             type: RECT;
22081             mouse_events: 0;
22082             description { state: "default" 0.0;
22083                min: 0 1;
22084                fixed: 0 1;
22085                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22086                rel1 {
22087                   relative: 1.0 0.25;
22088                   to_x: "vertical_line";
22089                }
22090                rel2.relative: 1.0 0.25;
22091                align: 0.5 1.0;
22092             }
22093          }
22094          part { name: "center2_line";
22095             type: RECT;
22096             mouse_events: 0;
22097             description { state: "default" 0.0;
22098                min: 0 1;
22099                fixed: 0 1;
22100                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22101                rel1 {
22102                   relative: 1.0 0.5;
22103                   to_x: "vertical_line";
22104                }
22105                rel2.relative: 1.0 0.5;
22106                align: 0.5 1.0;
22107             }
22108          }
22109          part { name: "center3_line";
22110             type: RECT;
22111             mouse_events: 0;
22112             description { state: "default" 0.0;
22113                min: 0 1;
22114                fixed: 0 1;
22115                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22116                rel1 {
22117                   relative: 1.0 0.75;
22118                   to_x: "vertical_line";
22119                }
22120                rel2.relative: 1.0 0.75;
22121                align: 0.5 1.0;
22122             }
22123          }
22124          part { name: "elm.title";
22125             type: TEXT;
22126             mouse_events: 0;
22127             scale: 1;
22128             description { state: "default" 0.0;
22129                min: GENLIST_SIZE_163_INC 0;
22130                fixed: 1 0;
22131                rel1 {
22132                   relative: 1.0  0.0;
22133                   to_x: "elm.padding.left";
22134                }
22135                rel2.to_x: "elm.padding.left";
22136                align: 0.0 0.5;
22137                color: GENLIST_MULTILINE_TEXT_COLOR;
22138                text {
22139                   font: "SLP:style=Medium";
22140                   size: GENLIST_MULTILINE_TEXT_SIZE;
22141                   min: 0 1;
22142                   align: 0.0 0.5;
22143                   text_class: "slp_medium";
22144                }
22145             }
22146          }
22147          part { name: "elm.padding.title.right";
22148             type: RECT;
22149             mouse_events: 0;
22150             scale: 1;
22151             description { state: "default" 0.0;
22152                min: GENLIST_PADDING_16_INC 0;
22153                fixed: 1 0;
22154                rel1 {
22155                    relative: 1.0 0.0;
22156                    to_x: "elm.title";
22157                }
22158                rel2.to_x: "elm.title";
22159                visible: 0;
22160                align: 0.0 0.5;
22161             }
22162          }
22163          part { name: "elm.text.1";
22164             clip_to: "disclip";
22165             type: TEXT;
22166             mouse_events: 0;
22167             scale: 1;
22168             description { state: "default" 0.0;
22169                rel1 {
22170                   relative: 1.0 0.0;
22171                   to_x: "elm.padding.title.right";
22172                }
22173                rel2 {
22174                   relative: 0.0 0.0;
22175                   to_x: "elm.padding.right";
22176                   to_y: "center1_line";
22177                }
22178                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22179                text {
22180                   font: "SLP:style=Roman";
22181                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22182                   min: 0 1;
22183                   align: 0.0 0.5;
22184                   text_class: "list_item";
22185                }
22186             }
22187          }
22188          part { name: "elm.text.2";
22189             clip_to: "disclip";
22190             type: TEXT;
22191             mouse_events: 0;
22192             scale: 1;
22193             description { state: "default" 0.0;
22194                rel1 {
22195                   relative: 1.0 0.25;
22196                   to_x: "elm.padding.title.right";
22197                }
22198                rel2 {
22199                   relative: 0.0 0.0;
22200                   to_x: "elm.padding.right";
22201                   to_y: "center2_line";
22202                }
22203                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22204                text {
22205                   font: "SLP:style=Roman";
22206                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22207                   min: 0 1;
22208                   align: 0.0 0.5;
22209                   text_class: "list_item";
22210                }
22211             }
22212          }
22213          part { name: "elm.text.3";
22214             clip_to: "disclip";
22215             type: TEXT;
22216             mouse_events: 0;
22217             scale: 1;
22218             description { state: "default" 0.0;
22219                rel1 {
22220                   relative: 1.0  0.5;
22221                   to_x: "elm.padding.title.right";
22222                }
22223                rel2 {
22224                   relative: 0.0 0.0;
22225                   to_x: "elm.padding.right";
22226                   to_y: "center3_line";
22227                }
22228                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22229                text {
22230                   font: "SLP:style=Roman";
22231                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22232                   min: 0 1;
22233                   align: 0.0 0.5;
22234                   text_class: "list_item";
22235                }
22236             }
22237          }
22238          part { name: "elm.text.4";
22239             clip_to: "disclip";
22240             type: TEXT;
22241             mouse_events: 0;
22242             scale: 1;
22243             description { state: "default" 0.0;
22244                rel1 {
22245                   relative: 1.0  0.75;
22246                   to_x: "elm.padding.title.right";
22247                }
22248                rel2 {
22249                   relative: 0.0 0.0;
22250                   to_x: "elm.padding.right";
22251                   to_y: "bottom_line";
22252                }
22253                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22254                text {
22255                   font: "SLP:style=Roman";
22256                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22257                   min: 0 1;
22258                   align: 0.0 0.5;
22259                   text_class: "list_item";
22260                }
22261             }
22262          }
22263          GENLIST_PART_DISCLIP
22264       }
22265       programs {
22266          // signal: elm,state,%s,active
22267          //   a "check" item named %s went active
22268          // signal: elm,state,%s,passive
22269          //   a "check" item named %s went passive
22270          // default is passive
22271          /*program { name: "go_active";
22272             signal: "elm,state,selected";
22273             source: "elm";
22274             action: STATE_SET "selected" 0.0;
22275             target: "elm.text";
22276          }
22277          program { name: "go_passive";
22278             signal: "elm,state,unselected";
22279             source: "elm";
22280             action: STATE_SET "default" 0.0;
22281             target: "elm.text";
22282             transition: LINEAR 0.1;
22283          }*/
22284          program { name: "go_disabled";
22285             signal: "elm,state,disabled";
22286             source: "elm";
22287             action: STATE_SET "disabled" 0.0;
22288             target: "disclip";
22289          }
22290          program { name: "go_enabled";
22291             signal: "elm,state,enabled";
22292             source: "elm";
22293             action: STATE_SET "default" 0.0;
22294             target: "disclip";
22295          }
22296       }
22297    }
22298
22299    group { name: "elm/genlist/item/dialogue/1title.5text/default";
22300       alias: "elm/genlist/item_odd/dialogue/1title.5text/default";
22301       alias: "elm/genlist/item_compress/dialogue/1title.5text/default";
22302       alias: "elm/genlist/item_compress_odd/dialogue/1title.5text/default";
22303       alias: "elm/layout/dialogue/1title.5text";
22304       data.item: "stacking" "above";
22305       data.item: "selectraise" "on";
22306       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
22307       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";
22308
22309       parts {
22310          GENLIST_PART_BASE( GENLIST_HEIGHT_566_INC )
22311          GENLIST_PART_DIALOGUE_BG_IMAGE
22312          GENLIST_PART_BOTTOM_LINE
22313          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
22314          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22315          GENLIST_PART_DIALOGUE_ITEM
22316          GENLIST_PART_DIALOGUE_RIGHT_LINE
22317          part { name: "vertical_line";
22318             type: RECT;
22319             mouse_events: 0;
22320             description { state: "default" 0.0;
22321                min: 1 0;
22322                fixed: 1 0;
22323                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22324                rel1 {
22325                   relative: 1.0 0.0;
22326                   to_x: "elm.title";
22327                }
22328                rel2.to_x: "elm.title";
22329                align: 0.0 0.5;
22330             }
22331          }
22332          part { name: "center1_line";
22333             type: RECT;
22334             mouse_events: 0;
22335             description { state: "default" 0.0;
22336                min: 0 1;
22337                fixed: 0 1;
22338                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22339                rel1 {
22340                   relative: 1.0 0.2;
22341                   to_x: "vertical_line";
22342                }
22343                rel2.relative: 1.0 0.2;
22344                align: 0.5 1.0;
22345             }
22346          }
22347          part { name: "center2_line";
22348             type: RECT;
22349             mouse_events: 0;
22350             description { state: "default" 0.0;
22351                min: 0 1;
22352                fixed: 0 1;
22353                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22354                rel1 {
22355                   relative: 1.0 0.4;
22356                   to_x: "vertical_line";
22357                }
22358                rel2.relative: 1.0 0.4;
22359                align: 0.5 1.0;
22360             }
22361          }
22362          part { name: "center3_line";
22363             type: RECT;
22364             mouse_events: 0;
22365             description { state: "default" 0.0;
22366                min: 0 1;
22367                fixed: 0 1;
22368                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22369                rel1 {
22370                   relative: 1.0 0.6;
22371                   to_x: "vertical_line";
22372                }
22373                rel2.relative: 1.0 0.6;
22374                align: 0.5 1.0;
22375             }
22376          }
22377          part { name: "center4_line";
22378             type: RECT;
22379             mouse_events: 0;
22380             description { state: "default" 0.0;
22381                min: 0 1;
22382                fixed: 0 1;
22383                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22384                rel1 {
22385                   relative: 1.0 0.8;
22386                   to_x: "vertical_line";
22387                }
22388                rel2.relative: 1.0 0.8;
22389                align: 0.5 1.0;
22390             }
22391          }
22392          part { name: "elm.title";
22393             type: TEXT;
22394             mouse_events: 0;
22395             scale: 1;
22396             description { state: "default" 0.0;
22397                min: GENLIST_SIZE_163_INC 0;
22398                fixed: 1 0;
22399                rel1 {
22400                   relative: 1.0  0.0;
22401                   to_x: "elm.padding.left";
22402                }
22403                rel2.to_x: "elm.padding.left";
22404                align: 0.0 0.5;
22405                color: GENLIST_DIALOGUE_FONT_EDIT_MODE_TEXT_01_COLOR_INC;
22406                text {
22407                   font: "SLP:style=Medium";
22408                   size: GENLIST_FONT_32_INC;
22409                   min: 0 1;
22410                   align: 0.0 0.5;
22411                   text_class: "slp_medium";
22412                }
22413             }
22414             GENLIST_DESCRIPTION_FLIP_ENABLED
22415          }
22416          part { name: "elm.flip.content.title";
22417             clip_to: "disclip";
22418             type: SWALLOW;
22419             description { state: "default" 0.0;
22420                visible: 0;
22421                fixed: 1 1;
22422                rel1.to: "elm.title";
22423                rel2.to: "elm.title";
22424             }
22425             description { state: "flip_enabled" 0.0;
22426                inherit: "default" 0.0;
22427                visible: 1;
22428             }
22429          }
22430          part { name: "elm.padding.title.right";
22431             type: RECT;
22432             mouse_events: 0;
22433             scale: 1;
22434             description { state: "default" 0.0;
22435                min: GENLIST_PADDING_16_INC 0;
22436                fixed: 1 0;
22437                rel1 {
22438                    relative: 1.0 0.0;
22439                    to_x: "elm.title";
22440                }
22441                rel2.to_x: "elm.title";
22442                visible: 0;
22443                align: 0.0 0.5;
22444             }
22445          }
22446          part { name: "elm.text.1";
22447             clip_to: "disclip";
22448             type: TEXT;
22449             mouse_events: 0;
22450             scale: 1;
22451             description { state: "default" 0.0;
22452                rel1 {
22453                   relative: 1.0 0.0;
22454                   to_x: "elm.padding.title.right";
22455                }
22456                rel2 {
22457                   relative: 0.0 0.0;
22458                   to_x: "elm.padding.right";
22459                   to_y: "center1_line";
22460                }
22461                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22462                text {
22463                   font: "SLP:style=Roman";
22464                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22465                   min: 0 1;
22466                   align: 0.0 0.5;
22467                   text_class: "list_item";
22468                }
22469             }
22470             GENLIST_DESCRIPTION_FLIP_ENABLED
22471          }
22472          part { name: "elm.flip.content.1";
22473             clip_to: "disclip";
22474             type: SWALLOW;
22475             description { state: "default" 0.0;
22476                visible: 0;
22477                fixed: 1 1;
22478                rel1.to: "elm.text.1";
22479                rel2.to: "elm.text.1";
22480             }
22481             description { state: "flip_enabled" 0.0;
22482                inherit: "default" 0.0;
22483                visible: 1;
22484             }
22485          }
22486          part { name: "elm.text.2";
22487             clip_to: "disclip";
22488             type: TEXT;
22489             mouse_events: 0;
22490             scale: 1;
22491             description { state: "default" 0.0;
22492                rel1 {
22493                   relative: 1.0 0.2;
22494                   to_x: "elm.padding.title.right";
22495                }
22496                rel2 {
22497                   relative: 0.0 0.0;
22498                   to_x: "elm.padding.right";
22499                   to_y: "center2_line";
22500                }
22501                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22502                text {
22503                   font: "SLP:style=Roman";
22504                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22505                   min: 0 1;
22506                   align: 0.0 0.5;
22507                   text_class: "slp_roman";
22508                }
22509             }
22510             GENLIST_DESCRIPTION_FLIP_ENABLED
22511          }
22512          part { name: "elm.flip.content.2";
22513             clip_to: "disclip";
22514             type: SWALLOW;
22515             description { state: "default" 0.0;
22516                visible: 0;
22517                fixed: 1 1;
22518                rel1.to: "elm.text.2";
22519                rel2.to: "elm.text.2";
22520             }
22521             description { state: "flip_enabled" 0.0;
22522                inherit: "default" 0.0;
22523                visible: 1;
22524             }
22525          }
22526          part { name: "elm.text.3";
22527             clip_to: "disclip";
22528             type: TEXT;
22529             mouse_events: 0;
22530             scale: 1;
22531             description { state: "default" 0.0;
22532                rel1 {
22533                   relative: 1.0  0.4;
22534                   to_x: "elm.padding.title.right";
22535                }
22536                rel2 {
22537                   relative: 0.0 0.0;
22538                   to_x: "elm.padding.right";
22539                   to_y: "center3_line";
22540                }
22541                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22542                text {
22543                   font: "SLP:style=Roman";
22544                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22545                   min: 0 1;
22546                   align: 0.0 0.5;
22547                   text_class: "slp_roman";
22548                }
22549             }
22550             GENLIST_DESCRIPTION_FLIP_ENABLED
22551          }
22552          part { name: "elm.flip.content.3";
22553             clip_to: "disclip";
22554             type: SWALLOW;
22555             description { state: "default" 0.0;
22556                visible: 0;
22557                fixed: 1 1;
22558                rel1.to: "elm.text.3";
22559                rel2.to: "elm.text.3";
22560             }
22561             description { state: "flip_enabled" 0.0;
22562                inherit: "default" 0.0;
22563                visible: 1;
22564             }
22565          }
22566          part { name: "elm.text.4";
22567             clip_to: "disclip";
22568             type: TEXT;
22569             mouse_events: 0;
22570             scale: 1;
22571             description { state: "default" 0.0;
22572                rel1 {
22573                   relative: 1.0 0.6;
22574                   to_x: "elm.padding.title.right";
22575                }
22576                rel2 {
22577                   relative: 0.0 0.0;
22578                   to_x: "elm.padding.right";
22579                   to_y: "center4_line";
22580                }
22581                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22582                text {
22583                   font: "SLP:style=Roman";
22584                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22585                   min: 0 1;
22586                   align: 0.0 0.5;
22587                   text_class: "slp_roman";
22588                }
22589             }
22590             GENLIST_DESCRIPTION_FLIP_ENABLED
22591          }
22592          part { name: "elm.flip.content.4";
22593             clip_to: "disclip";
22594             type: SWALLOW;
22595             description { state: "default" 0.0;
22596                visible: 0;
22597                fixed: 1 1;
22598                rel1.to: "elm.text.4";
22599                rel2.to: "elm.text.4";
22600             }
22601             description { state: "flip_enabled" 0.0;
22602                inherit: "default" 0.0;
22603                visible: 1;
22604             }
22605          }
22606          part { name: "elm.text.5";
22607             clip_to: "disclip";
22608             type: TEXT;
22609             mouse_events: 0;
22610             scale: 1;
22611             description { state: "default" 0.0;
22612                rel1 {
22613                   relative: 1.0  0.8;
22614                   to_x: "elm.padding.title.right";
22615                }
22616                rel2 {
22617                   relative: 0.0 0.0;
22618                   to_x: "elm.padding.right";
22619                   to_y: "bottom_line";
22620                }
22621                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22622                text {
22623                   font: "SLP:style=Roman";
22624                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22625                   min: 0 1;
22626                   align: 0.0 0.5;
22627                   text_class: "slp_roman";
22628                }
22629             }
22630             GENLIST_DESCRIPTION_FLIP_ENABLED
22631          }
22632          part { name: "elm.flip.content.5";
22633             clip_to: "disclip";
22634             type: SWALLOW;
22635             description { state: "default" 0.0;
22636                visible: 0;
22637                fixed: 1 1;
22638                rel1.to: "elm.text.5";
22639                rel2.to: "elm.text.5";
22640             }
22641             description { state: "flip_enabled" 0.0;
22642                inherit: "default" 0.0;
22643                visible: 1;
22644             }
22645          }
22646          GENLIST_PART_DISCLIP
22647       }
22648       programs {
22649          // signal: elm,state,%s,active
22650          //   a "check" item named %s went active
22651          // signal: elm,state,%s,passive
22652          //   a "check" item named %s went passive
22653          // default is passive
22654          /*program { name: "go_active";
22655             signal: "elm,state,selected";
22656             source: "elm";
22657             action: STATE_SET "selected" 0.0;
22658             target: "elm.text";
22659          }
22660          program { name: "go_passive";
22661             signal: "elm,state,unselected";
22662             source: "elm";
22663             action: STATE_SET "default" 0.0;
22664             target: "elm.text";
22665             transition: LINEAR 0.1;
22666          }*/
22667          program { name: "go_disabled";
22668             signal: "elm,state,disabled";
22669             source: "elm";
22670             action: STATE_SET "disabled" 0.0;
22671             target: "disclip";
22672          }
22673          program { name: "go_enabled";
22674             signal: "elm,state,enabled";
22675             source: "elm";
22676             action: STATE_SET "default" 0.0;
22677             target: "disclip";
22678          }
22679          program { name: "flip_enabled";
22680             signal: "elm,state,flip,enabled";
22681             source: "elm";
22682             action: STATE_SET "flip_enabled" 0.0;
22683             target: "elm.title";
22684             target: "elm.text.1";
22685             target: "elm.text.2";
22686             target: "elm.text.3";
22687             target: "elm.text.4";
22688             target: "elm.text.5";
22689             target: "elm.flip.content.title";
22690             target: "elm.flip.content.1";
22691             target: "elm.flip.content.2";
22692             target: "elm.flip.content.3";
22693             target: "elm.flip.content.4";
22694             target: "elm.flip.content.5";
22695          }
22696          program { name: "flip_disabled";
22697             signal: "elm,state,flip,disabled";
22698             source: "elm";
22699             action: STATE_SET "default" 0.0;
22700             target: "elm.title";
22701             target: "elm.text.1";
22702             target: "elm.text.2";
22703             target: "elm.text.3";
22704             target: "elm.text.4";
22705             target: "elm.text.5";
22706             target: "elm.flip.content.title";
22707             target: "elm.flip.content.1";
22708             target: "elm.flip.content.2";
22709             target: "elm.flip.content.3";
22710             target: "elm.flip.content.4";
22711             target: "elm.flip.content.5";
22712          }
22713       }
22714    }
22715
22716 /* extended item of bg/2text.1icon.3 */
22717    group { name: "elm/genlist/item/dialogue/bg/1text/default";
22718       alias: "elm/genlist/item_odd/dialogue/bg/1text/default";
22719       alias: "elm/genlist/item_compress/dialogue/bg/1text/default";
22720       alias: "elm/genlist/item_compress_odd/dialogue/bg/1text/default";
22721       alias: "elm/layout/dialogue/bg/1text";
22722       data.item: "stacking" "above";
22723       data.item: "selectraise" "on";
22724       data.item: "texts" "elm.text";
22725       data.item: "flips" "elm.flip.content";
22726       parts {
22727          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_1LINE )
22728          GENLIST_PART_PADDING_TOP( 0 )
22729          GENLIST_PART_PADDING_BOTTOM( 0 )
22730          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
22731          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22732          part { name: "elm.icon.bg";
22733             type: RECT;
22734             scale: 1;
22735             description { state: "default" 0.0;
22736                min: GENLIST_SIZE_160_INC 0;
22737                fixed: 1 0;
22738                align: 0.0 0.5;
22739                rel1 {
22740                   relative: 1.0 0.5;
22741                   to_x: "elm.padding.left";
22742                }
22743                rel2 {
22744                   relative: 1.0 0.5;
22745                   to_x: "elm.padding.left";
22746                }
22747                color: 0 0 0 0;
22748             }
22749          }
22750          part { name: "elm.padding.icon.right";
22751             type: RECT;
22752             mouse_events: 0;
22753             scale: 1;
22754             description { state: "default" 0.0;
22755                min: GENLIST_SIZE_16_INC 0;
22756                fixed: 1 0;
22757                rel1 {
22758                    relative: 1.0 0.0;
22759                    to_x: "elm.icon.bg";
22760                }
22761                rel2.to_x: "elm.icon.bg";
22762                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22763                align: 0.0 0.5;
22764             }
22765          }
22766          part { name: "elm.padding.text.left";
22767             type: RECT;
22768             mouse_events: 0;
22769             scale: 1;
22770             description { state: "default" 0.0;
22771                min: GENLIST_SIZE_16_INC 0;
22772                fixed: 1 0;
22773                rel1 {
22774                    relative: 1.0 1.0;
22775                    to_x: "elm.padding.icon.right";
22776                    to_y: "elm.padding.top";
22777                }
22778                rel2.to_x: "elm.padding.icon.right";
22779                visible: 0;
22780                align: 0.0 0.5;
22781             }
22782          }
22783          part { name: "vertical_line";
22784             type: RECT;
22785             mouse_events: 0;
22786             description { state: "default" 0.0;
22787                visible: 0;
22788                rel1 {
22789                   relative: 1.0 0.0;
22790                   to_x: "elm.padding.icon.right";
22791                }
22792                rel2.to_x: "elm.padding.icon.right";
22793                align: 0.0 0.5;
22794             }
22795          }
22796          part { name: "elm.text.bg";
22797             clip_to: "disclip";
22798             type: RECT;
22799             mouse_events: 0;
22800             scale: 1;
22801             description { state: "default" 0.0;
22802                rel1 {
22803                   relative: 1.0 0.0;
22804                   to_x: "elm.padding.icon.right";
22805                }
22806                rel2 {
22807                   relative: 1.0 1.0;
22808                   to_x: "elm.padding.right";
22809                }
22810                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
22811             }
22812          }
22813          part { name: "elm.text";
22814             clip_to: "disclip";
22815             type: TEXT;
22816             mouse_events: 0;
22817             scale: 1;
22818             description { state: "default" 0.0;
22819                rel1 {
22820                   relative: 1.0 0.0;
22821                   to_x: "elm.padding.text.left";
22822                   to_y: "elm.text.bg";
22823                }
22824                rel2 {
22825                   relative: 0.0 1.0;
22826                   to_x: "elm.padding.right";
22827                   to_y: "elm.text.bg";
22828                }
22829                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
22830                text {
22831                   font: "SLP:style=Roman";
22832                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
22833                   min: 0 1;
22834                   align: 0.0 0.5;
22835                   text_class: "list_item";
22836                }
22837             }
22838             GENLIST_DESCRIPTION_FLIP_ENABLED
22839          }
22840          part { name: "elm.flip.content";
22841             clip_to: "disclip";
22842             type: SWALLOW;
22843             mouse_events: 1;
22844             scale: 1;
22845             description { state: "default" 0.0;
22846                fixed: 1 1;
22847                rel1 {
22848                   relative: 1.0 0.0;
22849                   to_x: "elm.padding.text.left";
22850                   to_y: "elm.text.bg";
22851                }
22852                rel2 {
22853                   relative: 0.0 1.0;
22854                   to_x: "elm.padding.right";
22855                   to_y: "elm.text.bg";
22856                }
22857                visible: 0;
22858             }
22859             description { state: "flip_enabled" 0.0;
22860                inherit: "default" 0.0;
22861                visible: 1;
22862             }
22863          }
22864          GENLIST_PART_DISCLIP
22865       }
22866       programs {
22867          // signal: elm,state,%s,active
22868          //   a "check" item named %s went active
22869          // signal: elm,state,%s,passive
22870          //   a "check" item named %s went passive
22871          // default is passive
22872          /*program { name: "go_active";
22873             signal: "elm,state,selected";
22874             source: "elm";
22875             action: STATE_SET "selected" 0.0;
22876             target: "elm.text";
22877          }
22878          program { name: "go_passive";
22879             signal: "elm,state,unselected";
22880             source: "elm";
22881             action: STATE_SET "default" 0.0;
22882             target: "elm.text";
22883             transition: LINEAR 0.1;
22884          }*/
22885          program { name: "go_disabled";
22886             signal: "elm,state,disabled";
22887             source: "elm";
22888             action: STATE_SET "disabled" 0.0;
22889             target: "disclip";
22890          }
22891          program { name: "go_enabled";
22892             signal: "elm,state,enabled";
22893             source: "elm";
22894             action: STATE_SET "default" 0.0;
22895             target: "disclip";
22896          }
22897          program { name: "flip_enabled";
22898             signal: "elm,state,flip,enabled";
22899             source: "elm";
22900             action: STATE_SET "flip_enabled" 0.0;
22901             target: "elm.text";
22902             target: "elm.flip.content";
22903          }
22904          program { name: "flip_disabled";
22905             signal: "elm,state,flip,disabled";
22906             source: "elm";
22907             action: STATE_SET "default" 0.0;
22908             target: "elm.text";
22909             target: "elm.flip.content";
22910          }
22911       }
22912    }
22913 // 2.2.2.38
22914    group { name: "elm/genlist/item/4text.1icon.1/default";
22915       alias: "elm/genlist/item_odd/4text.1icon.1/default";
22916       alias: "elm/genlist/item_compress/4text.1icon.1/default";
22917       alias: "elm/genlist/item_compress_odd/4text.1icon.1/default";
22918       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
22919       data.item: "contents" "elm.icon.1";
22920       data.item: "stacking" "above";
22921       data.item: "selectraise" "on";
22922       data.item: "flips" "elm.flip.content";
22923       images {
22924          image: "00_winset_list_bubble_bg.png" COMP;
22925       }
22926       parts {
22927          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
22928          GENLIST_PART_BG_IMAGE
22929          GENLIST_PART_BOTTOM_LINE
22930          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_SIZE_TOP )
22931          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_SIZE_BOTTOM )
22932          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
22933          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22934
22935          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;))
22936          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;))
22937          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;))
22938          part { name: "elm.bubble";
22939             type: IMAGE;
22940             description{ state: "default" 0.0;
22941                fixed: 1 1;
22942                min: GENLIST_ICON_MEDIUM_SIZE 38;
22943                max: GENLIST_ICON_MEDIUM_SIZE 38;
22944                rel1 {
22945                   relative: 0 0;
22946                   to_x: "elm.text.4";
22947                   to_y: "elm.text.4";
22948                }
22949                rel2 {
22950                   relative: 1 1;
22951                   to_x: "elm.text.4";
22952                   to_y: "elm.text.4";
22953                }
22954                image {
22955                   normal: "00_winset_list_bubble_bg.png";
22956                   border:  6 6 0 0;
22957                }
22958             }
22959          }
22960          part { name: "elm.text.4";
22961             clip_to: "disclip";
22962             type: TEXT;
22963             scale: 1;
22964             GENLIST_DESCRIPTION_RT("elm.padding.right", "elm.padding.top",
22965                color: GENLIST_LIST_BUBBLE_TEXT_COLOR;
22966                fixed: 1 1;
22967                min: GENLIST_ICON_MEDIUM_SIZE 60;
22968                max: GENLIST_ICON_MEDIUM_SIZE 60;
22969                text {
22970                   font: "SLP:style=Medium";
22971                   size: GENLIST_FONT_32_INC;
22972                   min: 0 0;
22973                   align: 0.5 0.5;
22974                   text_class: "slp_medium";
22975                }
22976             )
22977             GENLIST_DESCRIPTION_FLIP_ENABLED
22978          }
22979          part { name: "elm.icon.1";
22980             clip_to: "disclip";
22981             type: SWALLOW;
22982             scale: 1;
22983             GENLIST_DESCRIPTION_RT("elm.icon.right", "elm.padding.top",
22984                color: 0 255 255 255;
22985                fixed: 1 1;
22986                min: GENLIST_ICON_MEDIUM_SIZE GENLIST_ICON_MEDIUM_SIZE;
22987             )
22988          }
22989          part { name: "elm.text.2";
22990             clip_to: "disclip";
22991             type: TEXT;
22992             scale: 1;
22993             GENLIST_DESCRIPTION_RB("elm.padding.right", "elm.padding.bottom",
22994                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
22995                fixed: 1 1;
22996                min: 0 48;
22997                max: 300 48;
22998                text {
22999                   font: "SLP:style=Medium";
23000                   size: GENLIST_FONT_32_INC;
23001                   min: 1 0;
23002                   align: 0.5 0.5;
23003                   text_class: "slp_medium";
23004               }
23005             )
23006             description { state: "selected" 0.0;
23007                inherit: "default" 0.0;
23008                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23009             }
23010             GENLIST_DESCRIPTION_FLIP_ENABLED
23011          }
23012          part { name: "elm.text.1";
23013             clip_to: "disclip";
23014             type: TEXT;
23015             scale: 1;
23016             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.1.right", "elm.padding.top", "elm.text.2",
23017                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23018                min: 0 60;
23019                text {
23020                   font: "SLP:style=Roman";
23021                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23022                   align: 0.0 0.5;
23023                   min: 0 1;
23024                   text_class: "list_item";
23025                }
23026             )
23027             description { state: "read" 0.0;
23028                inherit: "default" 0.0;
23029                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23030             }
23031             description { state: "selected" 0.0;
23032                inherit: "default" 0.0;
23033                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23034             }
23035             GENLIST_DESCRIPTION_FLIP_ENABLED
23036          }
23037          part { name: "elm.text.3";
23038             clip_to: "disclip";
23039             type: TEXT;
23040             scale: 1;
23041             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.3.right", "elm.text.1", "elm.padding.bottom",
23042                color: GENLIST_NAME_TEXT_COLOR;
23043                fixed: 1 1;
23044                align: 0.0 0.5;
23045                min: 0 48;
23046                text {
23047                   font: "SLP:style=Medium";
23048                   size: GENLIST_FONT_32_INC;
23049                   align: 0.0 0.5;
23050                   text_class: "slp_medium";
23051                }
23052             )
23053             GENLIST_DESCRIPTION_FLIP_ENABLED
23054          }
23055          GENLIST_PART_FLIP
23056          GENLIST_PART_DISCLIP
23057       }
23058       programs {
23059          // signal: elm,state,%s,active
23060          //   a "check" item named %s went active
23061          // signal: elm,state,%s,passive
23062          //   a "check" item named %s went passive
23063          // default is passive
23064          program { name: "go_active";
23065             signal: "elm,state,selected";
23066             source: "elm";
23067             action: STATE_SET "selected" 0.0;
23068             target: "bg_image";
23069             target: "elm.text.1";
23070             target: "elm.text.2";
23071             target: "elm.text.3";
23072          }
23073          program { name: "go_passive";
23074             signal: "elm,state,unselected";
23075             source: "elm";
23076             action: STATE_SET "default" 0.0;
23077             target: "bg_image";
23078             target: "elm.text.1";
23079             target: "elm.text.2";
23080             target: "elm.text.3";
23081             transition: LINEAR 0.1;
23082          }
23083          program { name: "go_read";
23084             signal: "elm,state,read";
23085             source: "elm";
23086             action: STATE_SET "read" 0.0;
23087             target: "elm.text.1";
23088          }
23089          program { name: "go_unread";
23090             signal: "elm,state,unread";
23091             source: "elm";
23092             action: STATE_SET "default" 0.0;
23093             target: "elm.text.1";
23094          }
23095       }
23096    }
23097 // 2.2.2.38 textblock
23098    group { name: "elm/genlist/item/4text.1icon.1.tb/default";
23099       alias: "elm/genlist/item_odd/4text.1icon.1.tb/default";
23100       alias: "elm/genlist/item_compress/4text.1icon.1.tb/default";
23101       alias: "elm/genlist/item_compress_odd/4text.1icon.1.tb/default";
23102       inherit: "elm/genlist/item/4text.1icon.1/default";
23103       parts {
23104          part { name: "elm.text.4";
23105             clip_to: "disclip";
23106             type: TEXTBLOCK;
23107             scale: 1;
23108             GENLIST_DESCRIPTION_RT("elm.padding.right", "elm.padding.top",
23109                fixed: 1 1;
23110                min: GENLIST_ICON_MEDIUM_SIZE 60;
23111                max: GENLIST_ICON_MEDIUM_SIZE 60;
23112                text {
23113                   style: "genlist_style_list_bubble_text";
23114                   min: 1 1;
23115                   align: 0.5 0.5;
23116                }
23117             )
23118             GENLIST_DESCRIPTION_FLIP_ENABLED
23119          }
23120          part { name: "elm.text.2";
23121             clip_to: "disclip";
23122             type: TEXTBLOCK;
23123             scale: 1;
23124             GENLIST_DESCRIPTION_RB("elm.padding.right", "elm.padding.bottom",
23125                fixed: 1 1;
23126                min: 0 48;
23127                max: 300 48;
23128                text {
23129                   style: "genlist_style_list_sub_text_default";
23130                   min: 1 0;
23131                   align: 0.5 0.5;
23132               }
23133             )
23134             description { state: "selected" 0.0;
23135                inherit: "default" 0.0;
23136                            // FIXME: color is not chaned by textblock
23137                            color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23138                text.style: "genlist_style_list_sub_text_focus";
23139             }
23140             GENLIST_DESCRIPTION_FLIP_ENABLED
23141          }
23142          part { name: "elm.text.1";
23143             clip_to: "disclip";
23144             type: TEXTBLOCK;
23145             scale: 1;
23146             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.1.right", "elm.padding.top", "elm.text.2",
23147                fixed: 0 1;
23148                min: 0 60;
23149                max: -1 60;
23150                text {
23151                   style: "genlist_style_list_main_text_unread";
23152                   align: 0.0 0.5;
23153                }
23154             )
23155             description { state: "read" 0.0;
23156                inherit: "default" 0.0;
23157                            // FIXME: color is not chaned by textblock
23158                            color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23159                text.style: "genlist_style_list_main_text_unread";
23160             }
23161             description { state: "selected" 0.0;
23162                inherit: "default" 0.0;
23163                            // FIXME: color is not chaned by textblock
23164                            color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23165                text.style: "genlist_style_list_main_text_focus";
23166             }
23167             GENLIST_DESCRIPTION_FLIP_ENABLED
23168          }
23169          part { name: "elm.text.3";
23170             clip_to: "disclip";
23171             type: TEXT;
23172             scale: 1;
23173             GENLIST_DESCRIPTION("elm.padding.left", "elm.text.3.right", "elm.text.1", "elm.padding.bottom",
23174                fixed: 1 1;
23175                align: 0.0 0.5;
23176                min: 0 48;
23177                text {
23178                   style: "genlist_style_name_text";
23179                   align: 0.0 0.5;
23180                }
23181             )
23182             GENLIST_DESCRIPTION_FLIP_ENABLED
23183          }
23184          GENLIST_PART_FLIP
23185          GENLIST_PART_DISCLIP
23186       }
23187    }
23188
23189 // 2.2.2.39
23190    group { name: "elm/genlist/item/4text.1icon.2/default";
23191       alias: "elm/genlist/item_odd/4text.1icon.2/default";
23192       alias: "elm/genlist/item_compress/4text.1icon.2/default";
23193       alias: "elm/genlist/item_compress_odd/4text.1icon.2/default";
23194       inherit: "elm/genlist/item/4text.1icon.1/default";
23195       parts {
23196          part { name: "elm.bubble";
23197             description { state: "default" 0.0;
23198                visible: 0;
23199             }
23200          }
23201          part { name: "elm.text.4";
23202             description { state: "default" 0.0;
23203                fixed: 1 1;
23204                max: -1 60;
23205                color: GENLIST_LIST_MESSAGE_TEXT_COLOR;
23206                text {
23207                   font: GENLIST_LIST_MESSAGE_TEXT_SIZE;
23208                   min: 1 0;
23209                   align: 0.5 0.5;
23210                }
23211             }
23212          }
23213       }
23214    }
23215 // 2.2.2.39 (TEXTBLOCK)
23216    group { name: "elm/genlist/item/4text.1icon.2.tb/default";
23217       alias: "elm/genlist/item_odd/4text.1icon.2.tb/default";
23218       alias: "elm/genlist/item_compress/4text.1icon.2.tb/default";
23219       alias: "elm/genlist/item_compress_odd/4text.1icon.2.tb/default";
23220       inherit: "elm/genlist/item/4text.1icon.1.tb/default";
23221
23222       parts {
23223          part { name: "elm.bubble";
23224             description { state: "default" 0.0;
23225                visible: 0;
23226             }
23227          }
23228          part { name: "elm.text.4";
23229             description { state: "default" 0.0;
23230                fixed: 1 1;
23231                max: -1 60;
23232                text {
23233                   style: "genlist_style_list_message_text";
23234                   min: 1 0;
23235                   align: 0.5 0.5;
23236                }
23237             }
23238          }
23239       }
23240    }
23241    // 2.2.2.40
23242    group { name: "elm/genlist/item/4text.1/default";
23243       alias: "elm/genlist/item_odd/4text.1/default";
23244       alias: "elm/genlist/item_compress/4text.1/default";
23245       alias: "elm/genlist/item_compress_odd/4text.1/default";
23246       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23247       data.item: "stacking" "above";
23248       data.item: "selectraise" "on";
23249       data.item: "flips" "elm.flip.content";
23250       images {
23251          image: "00_winset_list_bubble_bg.png" COMP;
23252       }
23253       parts {
23254          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23255          GENLIST_PART_BG_IMAGE
23256          GENLIST_PART_BOTTOM_LINE
23257          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23258          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23259          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23260          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23261
23262          part { name: "elm.text.1";
23263             clip_to: "disclip";
23264             type: TEXT;
23265             scale: 1;
23266             description { state: "default" 0.0;
23267                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23268                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23269                rel1 { relative: 1.0 1.0;
23270                   to_x: "elm.padding.left";
23271                   to_y: "elm.padding.top";
23272                }
23273                rel2 { relative: 0.0 1.0;
23274                   to_x: "elm.padding.text1.right";
23275                   to_y: "elm.padding.text1.right";
23276                }
23277                text {
23278                   font: "SLP:style=Roman";
23279                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23280                   min: 0 1;
23281                   align: 0.0 0.5;
23282                   text_class: "list_item";
23283                }
23284             }
23285             description { state: "read" 0.0;
23286                inherit: "default" 0.0;
23287                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23288             }
23289             description { state: "selected" 0.0;
23290                inherit: "default" 0.0;
23291                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23292             }
23293             GENLIST_DESCRIPTION_FLIP_ENABLED
23294          }
23295          part { name: "elm.padding.text1.right";
23296             clip_to: "disclip";
23297             type: RECT;
23298             scale: 1;
23299             description { state: "default" 0.0;
23300                fixed: 1 1 ;
23301                align: 1.0 0.0;
23302                visible: 0;
23303                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23304                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23305                rel1 { relative: 0.0 1.0;
23306                   to_x: "elm.text.2";
23307                   to_y: "elm.padding.top";
23308                }
23309                rel2 { relative: 0.0 1.0;
23310                   to_x: "elm.text.2";
23311                   to_y: "elm.padding.top";
23312                }
23313             }
23314          }
23315          part { name: "elm.text.2";
23316             clip_to: "disclip";
23317             type: TEXT;
23318             scale: 1;
23319             description { state: "default" 0.0;
23320                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
23321                fixed: 0 1;
23322                align: 1.0 1.0;
23323                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23324                rel1 { relative: 0.0 1.0;
23325                   to_x: "elm.padding.right";
23326                   to_y: "elm.padding.bottom";
23327                }
23328                rel2 { relative: 0.0 1.0;
23329                  to_x: "elm.padding.right";
23330                  to_y: "elm.padding.bottom";
23331                }
23332                text {
23333                   font: "SLP:style=Medium";
23334                   size: GENLIST_FONT_32_INC;
23335                   min: 1 1;
23336                   align: 0.5 0.5;
23337                   text_class: "slp_medium";
23338               }
23339             }
23340             description { state: "selected" 0.0;
23341                inherit: "default" 0.0;
23342                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23343             }
23344             GENLIST_DESCRIPTION_FLIP_ENABLED
23345          }
23346          part { name: "elm.bubble";
23347             type: IMAGE;
23348             description{ state: "default" 0.0;
23349                fixed: 1 1;
23350                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23351                rel1 { relative: 0 0;
23352                   to_x: "elm.padding.bubble.text4.left";
23353                   to_y: "elm.padding.bubble.text4.left";
23354                }
23355                rel2 { relative: 1 1;
23356                   to_x: "elm.padding.bubble.text4.right";
23357                   to_y: "elm.padding.bubble.text4.right";
23358                }
23359                image {
23360                   normal: "00_winset_list_bubble_bg.png";
23361                   border:  6 6 0 0;
23362                }
23363             }
23364          }
23365          part { name: "elm.padding.bubble.text4.left";
23366             type: RECT;
23367             scale: 1;
23368             description { state: "default" 0.0;
23369                fixed: 1 1;
23370                align: 1 0;
23371                visible: 0;
23372                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23373                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23374                rel1 { relative: 0 1;
23375                   to_x: "elm.text.4";
23376                   to_y: "elm.padding.top";
23377                }
23378                rel2 { relative: 0 0;
23379                   to_x: "elm.text.4";
23380                   to_y: "elm.text.2";
23381                }
23382
23383             }
23384          }
23385          part { name: "elm.padding.bubble.text4.right";
23386             type: RECT;
23387             scale: 1;
23388             description { state: "default" 0.0;
23389                fixed: 1 1;
23390                align: 1 0;
23391                visible: 0;
23392                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23393                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23394                rel1 { relative: 0 1;
23395                   to_x: "elm.padding.right";
23396                   to_y: "elm.padding.top";
23397                }
23398                rel2 { relative: 0 0;
23399                   to_x: "elm.padding.right";
23400                   to_y: "elm.text.2";
23401                }
23402             }
23403          }
23404          part { name: "elm.text.4";
23405             clip_to: "disclip";
23406             type: TEXT;
23407             scale: 1;
23408             description { state: "default" 0.0;
23409                color: GENLIST_LIST_BUBBLE_TEXT_COLOR;
23410                fixed: 1 1;
23411                align: 1.0 0.0;
23412                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
23413                rel1 { relative: 0 1;
23414                   to_x: "elm.padding.bubble.text4.right";
23415                   to_y: "elm.padding.top";
23416                }
23417                rel2 { relative: 0 0;
23418                   to_x: "elm.padding.bubble.text4.right";
23419                   to_y: "elm.text.2";
23420                }
23421                text {
23422                   font: "SLP:style=Medium";
23423                   size: GENLIST_FONT_32_INC;
23424                   min: 1 1;
23425                   align: 0.5 0.5;
23426                   text_class: "slp_medium";
23427                }
23428             }
23429             GENLIST_DESCRIPTION_FLIP_ENABLED
23430          }
23431          part { name: "elm.padding.text3.right";
23432             clip_to: "disclip";
23433             type: RECT;
23434             scale: 1;
23435             description { state: "default" 0.0;
23436                fixed: 1 1;
23437                align: 1.0 0.0;
23438                visible: 0;
23439                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23440                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23441                rel1 { relative: 0 0;
23442                   to_x: "elm.padding.bubble.text4.left";
23443                   to_y: "elm.padding.bubble.text4.left";
23444                }
23445                rel2 { relative: 0 0;
23446                   to_x: "elm.padding.bubble.text4.left";
23447                   to_y: "elm.padding.bottom";
23448                }
23449             }
23450          }
23451          part { name: "elm.text.3";
23452             clip_to: "disclip";
23453             type: TEXT;
23454             scale: 1;
23455             description { state: "default" 0.0;
23456                color: GENLIST_NAME_TEXT_COLOR;
23457                fixed: 0 1;
23458                align: 0.0 0.0;
23459                min: 0 GENLIST_SIZE_48_INC;
23460                rel1 { relative: 1 1;
23461                   to_x: "elm.padding.left";
23462                   to_y: "elm.text.1";
23463                }
23464                rel2 { relative: 0 1;
23465                   to_x: "elm.padding.text3.right";
23466                   to_y: "elm.padding.text3.right";
23467                }
23468                text {
23469                   font: "SLP:style=Medium";
23470                   size: GENLIST_FONT_32_INC;
23471                   min: 0 1;
23472                   align: 0.0 0.5;
23473                   text_class: "slp_medium";
23474                }
23475             }
23476             description { state: "selected" 0.0;
23477                inherit: "default" 0.0;
23478                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23479             }
23480             GENLIST_DESCRIPTION_FLIP_ENABLED
23481          }
23482          GENLIST_PART_FLIP
23483          GENLIST_PART_DISCLIP
23484       }
23485       programs {
23486          // signal: elm,state,%s,active
23487          //   a "check" item named %s went active
23488          // signal: elm,state,%s,passive
23489          //   a "check" item named %s went passive
23490          // default is passive
23491          program { name: "go_active";
23492             signal: "elm,state,selected";
23493             source: "elm";
23494             action: STATE_SET "selected" 0.0;
23495             target: "bg_image";
23496             target: "elm.text.1";
23497             target: "elm.text.2";
23498          }
23499          program { name: "go_passive";
23500             signal: "elm,state,unselected";
23501             source: "elm";
23502             action: STATE_SET "default" 0.0;
23503             target: "bg_image";
23504             target: "elm.text.1";
23505             target: "elm.text.2";
23506             transition: LINEAR 0.1;
23507          }
23508          program { name: "go_read";
23509             signal: "elm,state,read";
23510             source: "elm";
23511             action: STATE_SET "read" 0.0;
23512             target: "elm.text.1";
23513          }
23514          program { name: "go_unread";
23515             signal: "elm,state,unread";
23516             source: "elm";
23517             action: STATE_SET "default" 0.0;
23518             target: "elm.text.1";
23519          }
23520       }
23521    }
23522    // 2.2.2.41
23523    group { name: "elm/genlist/item/4text.2/default";
23524       alias: "elm/genlist/item_odd/4text.2/default";
23525       alias: "elm/genlist/item_compress/4text.2/default";
23526       alias: "elm/genlist/item_compress_odd/4text.2/default";
23527       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23528       data.item: "stacking" "above";
23529       data.item: "selectraise" "on";
23530       data.item: "flips" "elm.flip.content";
23531       parts {
23532          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23533          GENLIST_PART_BG_IMAGE
23534          GENLIST_PART_BOTTOM_LINE
23535          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23536          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23537          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23538          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23539
23540          part { name: "elm.text.1";
23541             clip_to: "disclip";
23542             type: TEXT;
23543             scale: 1;
23544             description { state: "default" 0.0;
23545                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23546                fixed: 0 1;
23547                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23548                rel1 { relative: 1.0 1.0;
23549                   to_x: "elm.padding.left";
23550                   to_y: "elm.padding.top";
23551                }
23552                rel2 { relative: 0.0 1.0;
23553                   to_x: "elm.padding.text1.right";
23554                   to_y: "elm.padding.text1.right";
23555                }
23556                text {
23557                   font: "SLP:style=Roman";
23558                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23559                   min: 0 1;
23560                   align: 0.0 0.5;
23561                   text_class: "list_item";
23562                }
23563             }
23564             description { state: "read" 0.0;
23565                inherit: "default" 0.0;
23566                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23567             }
23568             description { state: "selected" 0.0;
23569                inherit: "default" 0.0;
23570                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23571             }
23572             GENLIST_DESCRIPTION_FLIP_ENABLED
23573          }
23574          part { name: "elm.padding.text1.right";
23575             clip_to: "disclip";
23576             type: RECT;
23577             scale: 1;
23578             description { state: "default" 0.0;
23579                fixed: 1 1 ;
23580                align: 1.0 0.0;
23581                visible: 0;
23582                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23583                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23584                rel1 { relative: 0.0 1.0;
23585                   to_x: "elm.text.2";
23586                   to_y: "elm.padding.top";
23587                }
23588                rel2 { relative: 0.0 1.0;
23589                   to_x: "elm.text.2";
23590                   to_y: "elm.padding.top";
23591                }
23592             }
23593          }
23594          part { name: "elm.text.2";
23595             clip_to: "disclip";
23596             type: TEXT;
23597             scale: 1;
23598             description { state: "default" 0.0;
23599                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
23600                fixed: 0 1;
23601                align: 1.0 1.0;
23602                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23603                rel1 { relative: 0.0 1.0;
23604                   to_x: "elm.padding.right";
23605                   to_y: "elm.padding.bottom";
23606                }
23607                rel2 { relative: 0.0 1.0;
23608                  to_x: "elm.padding.right";
23609                  to_y: "elm.padding.bottom";
23610                }
23611                text {
23612                   font: "SLP:style=Medium";
23613                   size: GENLIST_FONT_32_INC;
23614                   min: 1 1;
23615                   align: 0.5 0.5;
23616                   text_class: "slp_medium";
23617               }
23618             }
23619             description { state: "selected" 0.0;
23620                inherit: "default" 0.0;
23621                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23622             }
23623             GENLIST_DESCRIPTION_FLIP_ENABLED
23624          }
23625          part { name: "elm.text.4";
23626             clip_to: "disclip";
23627             type: TEXT;
23628             scale: 1;
23629             description { state: "default" 0.0;
23630                color: GENLIST_LIST_MESSAGE_TEXT_COLOR;
23631                fixed: 0 1;
23632                align: 1.0 0.0;
23633                min: 0 GENLIST_SIZE_48_INC;
23634                rel1 { relative: 0 1;
23635                   to_x: "elm.padding.right";
23636                   to_y: "elm.padding.top";
23637                }
23638                rel2 { relative: 0 0;
23639                   to_x: "elm.padding.right";
23640                   to_y: "elm.text.2";
23641                }
23642                text {
23643                   font: "SLP:style=Medium";
23644                   size: GENLIST_FONT_32_INC;
23645                   min: 1 1;
23646                   align: 0.5 0.5;
23647                   text_class: "slp_medium";
23648                }
23649             }
23650             GENLIST_DESCRIPTION_FLIP_ENABLED
23651          }
23652          part { name: "elm.padding.text3.right";
23653             clip_to: "disclip";
23654             type: RECT;
23655             scale: 1;
23656             description { state: "default" 0.0;
23657                fixed: 1 1;
23658                align: 1.0 0.0;
23659                visible: 0;
23660                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23661                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23662                rel1 { relative: 0 0;
23663                   to_x: "elm.text.4";
23664                   to_y: "elm.text.4";
23665                }
23666                rel2 { relative: 0 0;
23667                   to_x: "elm.text.4";
23668                   to_y: "elm.padding.bottom";
23669                }
23670             }
23671          }
23672          part { name: "elm.text.3";
23673             clip_to: "disclip";
23674             type: TEXT;
23675             scale: 1;
23676             description { state: "default" 0.0;
23677                color: GENLIST_NAME_TEXT_COLOR;
23678                fixed: 0 1;
23679                align: 0.0 0.0;
23680                min: 0 GENLIST_SIZE_48_INC;
23681                rel1 { relative: 1 1;
23682                   to_x: "elm.padding.left";
23683                   to_y: "elm.text.1";
23684                }
23685                rel2 { relative: 0 1;
23686                   to_x: "elm.padding.text3.right";
23687                   to_y: "elm.padding.text3.right";
23688                }
23689                text {
23690                   font: "SLP:style=Medium";
23691                   size: GENLIST_FONT_32_INC;
23692                   min: 0 1;
23693                   align: 0.0 0.5;
23694                   text_class: "slp_medium";
23695                }
23696             }
23697             description { state: "selected" 0.0;
23698                inherit: "default" 0.0;
23699                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23700             }
23701             GENLIST_DESCRIPTION_FLIP_ENABLED
23702          }
23703          GENLIST_PART_FLIP
23704          GENLIST_PART_DISCLIP
23705       }
23706       programs {
23707          // signal: elm,state,%s,active
23708          //   a "check" item named %s went active
23709          // signal: elm,state,%s,passive
23710          //   a "check" item named %s went passive
23711          // default is passive
23712          program { name: "go_active";
23713             signal: "elm,state,selected";
23714             source: "elm";
23715             action: STATE_SET "selected" 0.0;
23716             target: "bg_image";
23717             target: "elm.text.1";
23718             target: "elm.text.2";
23719          }
23720          program { name: "go_passive";
23721             signal: "elm,state,unselected";
23722             source: "elm";
23723             action: STATE_SET "default" 0.0;
23724             target: "bg_image";
23725             target: "elm.text.1";
23726             target: "elm.text.2";
23727             transition: LINEAR 0.1;
23728          }
23729          program { name: "go_read";
23730             signal: "elm,state,read";
23731             source: "elm";
23732             action: STATE_SET "read" 0.0;
23733             target: "elm.text.1";
23734          }
23735          program { name: "go_unread";
23736             signal: "elm,state,unread";
23737             source: "elm";
23738             action: STATE_SET "default" 0.0;
23739             target: "elm.text.1";
23740          }
23741       }
23742    }
23743    // 2.2.2.42
23744    group { name: "elm/genlist/item/3text.1icon.3/default";
23745       alias: "elm/genlist/item_odd/3text.1icon.3/default";
23746       alias: "elm/genlist/item_compress/3text.1icon.3/default";
23747       alias: "elm/genlist/item_compress_odd/3text.1icon.3/default";
23748       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
23749       data.item: "contents" "elm.icon.1";
23750       data.item: "stacking" "above";
23751       data.item: "selectraise" "on";
23752       data.item: "flips" "elm.flip.content";
23753       parts {
23754          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23755          GENLIST_PART_BG_IMAGE
23756          GENLIST_PART_BOTTOM_LINE
23757          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23758          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23759          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23760          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23761
23762          part { name: "elm.text.1";
23763             clip_to: "disclip";
23764             type: TEXT;
23765             scale: 1;
23766             description { state: "default" 0.0;
23767                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
23768                fixed: 0 1;
23769                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23770                rel1 { relative: 1.0 1.0;
23771                   to_x: "elm.padding.left";
23772                   to_y: "elm.padding.top";
23773                }
23774                rel2 { relative: 0.0 1.0;
23775                   to_x: "elm.padding.text1.right";
23776                   to_y: "elm.padding.text1.right";
23777                }
23778                text {
23779                   font: "SLP:style=Roman";
23780                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
23781                   min: 0 1;
23782                   align: 0.0 0.5;
23783                   text_class: "list_item";
23784                }
23785             }
23786             description { state: "read" 0.0;
23787                inherit: "default" 0.0;
23788                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
23789             }
23790             description { state: "selected" 0.0;
23791                inherit: "default" 0.0;
23792                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23793             }
23794             GENLIST_DESCRIPTION_FLIP_ENABLED
23795          }
23796          part { name: "elm.padding.text1.right";
23797             clip_to: "disclip";
23798             type: RECT;
23799             scale: 1;
23800             description { state: "default" 0.0;
23801                fixed: 1 1 ;
23802                align: 1.0 0.0;
23803                visible: 0;
23804                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23805                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23806                rel1 { relative: 0.0 1.0;
23807                   to_x: "elm.icon.1";
23808                   to_y: "elm.padding.top";
23809                }
23810                rel2 { relative: 0.0 1.0;
23811                   to_x: "elm.icon.1";
23812                   to_y: "elm.padding.top";
23813                }
23814             }
23815          }
23816          part { name: "elm.text.2";
23817             clip_to: "disclip";
23818             type: TEXT;
23819             scale: 1;
23820             description { state: "default" 0.0;
23821                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
23822                fixed: 0 1;
23823                align: 1.0 1.0;
23824                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23825                rel1 { relative: 0.0 1.0;
23826                   to_x: "elm.padding.right";
23827                   to_y: "elm.padding.bottom";
23828                }
23829                rel2 { relative: 0.0 1.0;
23830                  to_x: "elm.padding.right";
23831                  to_y: "elm.padding.bottom";
23832                }
23833                text {
23834                   font: "SLP:style=Medium";
23835                   size: GENLIST_FONT_32_INC;
23836                   min: 1 1;
23837                   align: 0.5 0.5;
23838                   text_class: "slp_medium";
23839               }
23840             }
23841             description { state: "selected" 0.0;
23842                inherit: "default" 0.0;
23843                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
23844             }
23845
23846             GENLIST_DESCRIPTION_FLIP_ENABLED
23847          }
23848          part { name: "elm.padding.icon1.right";
23849             clip_to: "disclip";
23850             type: RECT;
23851             scale: 1;
23852             description { state: "default" 0.0;
23853                fixed: 1 1;
23854                align: 1.0 0.0;
23855                visible: 0;
23856                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23857                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23858                rel1 { relative: 0 1;
23859                   to_x: "elm.padding.right";
23860                   to_y: "elm.padding.top";
23861                }
23862                rel2 { relative: 0 0;
23863                   to_x: "elm.padding.right";
23864                   to_y: "elm.text.2";
23865                }
23866             }
23867          }
23868          part { name: "elm.icon.1";
23869             clip_to: "disclip";
23870             type: SWALLOW;
23871             scale: 1;
23872             description { state: "default" 0.0;
23873                color: 0 255 255 255;
23874                fixed: 1 1;
23875                align: 1.0 0.0;
23876                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23877                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23878                rel1 { relative: 0 0;
23879                   to_x: "elm.padding.icon1.right";
23880                   to_y: "elm.padding.icon1.right";
23881                }
23882                rel2 { relative: 0 1;
23883                   to_x: "elm.padding.icon1.right";
23884                   to_y: "elm.padding.icon1.right";
23885                }
23886             }
23887          }
23888          part { name: "elm.padding.text3.right";
23889             clip_to: "disclip";
23890             type: RECT;
23891             scale: 1;
23892             description { state: "default" 0.0;
23893                fixed: 1 1;
23894                align: 1.0 0.0;
23895                visible: 0;
23896                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23897                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23898                rel1 { relative: 0 0;
23899                   to_x: "elm.text.2";
23900                   to_y: "elm.padding.top";
23901                }
23902                rel2 { relative: 0 0;
23903                   to_x: "elm.text.2";
23904                   to_y: "elm.icon.1";
23905                }
23906             }
23907          }
23908          part { name: "elm.text.3";
23909             clip_to: "disclip";
23910             type: TEXT;
23911             scale: 1;
23912             description { state: "default" 0.0;
23913                color: GENLIST_NAME_TEXT_COLOR;
23914                fixed: 0 1;
23915                align: 0.0 0.0;
23916                min: 0 GENLIST_SIZE_48_INC;
23917                rel1 { relative: 1 1;
23918                   to_x: "elm.padding.left";
23919                   to_y: "elm.text.1";
23920                }
23921                rel2 { relative: 0 1;
23922                   to_x: "elm.padding.text3.right";
23923                   to_y: "elm.padding.text3.right";
23924                }
23925                text {
23926                   font: "SLP:style=Medium";
23927                   size: GENLIST_FONT_32_INC;
23928                   min: 0 1;
23929                   align: 0.0 0.5;
23930                   text_class: "slp_medium";
23931                }
23932             }
23933             description { state: "selected" 0.0;
23934                inherit: "default" 0.0;
23935                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
23936             }
23937             GENLIST_DESCRIPTION_FLIP_ENABLED
23938          }
23939          GENLIST_PART_FLIP
23940          GENLIST_PART_DISCLIP
23941       }
23942       programs {
23943          // signal: elm,state,%s,active
23944          //   a "check" item named %s went active
23945          // signal: elm,state,%s,passive
23946          //   a "check" item named %s went passive
23947          // default is passive
23948          program { name: "go_active";
23949             signal: "elm,state,selected";
23950             source: "elm";
23951             action: STATE_SET "selected" 0.0;
23952             target: "bg_image";
23953             target: "elm.text.1";
23954             target: "elm.text.2";
23955          }
23956          program { name: "go_passive";
23957             signal: "elm,state,unselected";
23958             source: "elm";
23959             action: STATE_SET "default" 0.0;
23960             target: "bg_image";
23961             target: "elm.text.1";
23962             target: "elm.text.2";
23963             transition: LINEAR 0.1;
23964          }
23965          program { name: "go_read";
23966             signal: "elm,state,read";
23967             source: "elm";
23968             action: STATE_SET "read" 0.0;
23969             target: "elm.text.1";
23970          }
23971          program { name: "go_unread";
23972             signal: "elm,state,unread";
23973             source: "elm";
23974             action: STATE_SET "default" 0.0;
23975             target: "elm.text.1";
23976          }
23977       }
23978    }
23979    // 2.2.2.44
23980    group { name: "elm/genlist/item/4text.1icon.3/default";
23981       alias: "elm/genlist/item_odd/4text.1icon.3/default";
23982       alias: "elm/genlist/item_compress/4text.1icon.3/default";
23983       alias: "elm/genlist/item_compress_odd/4text.1icon.3/default";
23984       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23985       data.item: "stacking" "above";
23986       data.item: "selectraise" "on";
23987       data.item: "contents" "elm.icon.1";
23988       data.item: "flips" "elm.flip.content";
23989       images {
23990          image: "00_winset_list_bubble_bg.png" COMP;
23991       }
23992       parts {
23993          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23994          GENLIST_PART_BG_IMAGE
23995          GENLIST_PART_BOTTOM_LINE
23996          GENLIST_PART_PADDING_TOP( 10 )
23997          GENLIST_PART_PADDING_BOTTOM( 10 )
23998          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23999          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24000          GENLIST_PART_COLORBAR
24001          part { name: "elm.icon.1";
24002             clip_to: "disclip";
24003             type: SWALLOW;
24004             scale: 1;
24005             GENLIST_DESCRIPTION_L("elm.padding.left",
24006                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
24007                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
24008                fixed: 1 1;
24009             )
24010             GENLIST_DESCRIPTION_FLIP_ENABLED
24011          }
24012          GENLIST_PART_PADDING_LEFT_TO("elm.padding.icon1.right", "elm.icon.1", GENLIST_PADDING_SIZE_DEFAULT)
24013          part { name: "elm.text.1";
24014             clip_to: "disclip";
24015             type: TEXT;
24016             scale: 1;
24017             GENLIST_DESCRIPTION("elm.padding.icon1.right", "elm.padding.text4.left", "elm.padding.top", "elm.text.3",
24018                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24019                min: 0 60;
24020                text {
24021                   font: "SLP:style=Roman";
24022                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
24023                   min: 0 1;
24024                   align: 0.0 0.5;
24025                   text_class: "list_item";
24026                }
24027             )
24028             description { state: "read" 0.0;
24029                inherit: "default" 0.0;
24030                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
24031             }
24032             description { state: "selected" 0.0;
24033                inherit: "default" 0.0;
24034                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
24035             }
24036             GENLIST_DESCRIPTION_FLIP_ENABLED
24037          }
24038          GENLIST_PART_PADDING_RIGHT_TO("elm.padding.text4.left", "elm.bubble", GENLIST_PADDING_SIZE_DEFAULT)
24039          part { name: "elm.bubble";
24040             clip_to: "disclip";
24041             type: IMAGE;
24042             description { state: "default" 0.0;
24043                rel1.to: "elm.text.4";
24044                rel2.to: "elm.text.4";
24045                // bubble is larger than text in X axis (left, right)
24046                rel1.offset: -5 0;
24047                rel2.offset: 5 0;
24048                image {
24049                   normal: "00_winset_list_bubble_bg.png";
24050                   border:  6 6 0 0;
24051                }
24052             }
24053          }
24054          part { name: "elm.text.4";
24055             clip_to: "disclip";
24056             type: TEXT;
24057             scale: 1;
24058             GENLIST_DESCRIPTION_RTB("elm.padding.right", "elm.padding.top", "elm.text.2",
24059                // bubble is larger than text in X axis (left, right)
24060                rel1.offset: -5 0;
24061                rel2.offset: -5 0;
24062                color: GENLIST_LIST_BUBBLE_TEXT_COLOR;
24063                min: 0 48;
24064                text {
24065                   font: "SLP:style=Medium";
24066                   size: GENLIST_FONT_32_INC;
24067                   min: 1 1;
24068                   align: 1 0.5;
24069                   text_class: "slp_medium";
24070                }
24071             )
24072             GENLIST_DESCRIPTION_FLIP_ENABLED
24073          }
24074          part { name: "elm.text.2";
24075             clip_to: "disclip";
24076             type: TEXT;
24077             scale: 1;
24078             GENLIST_DESCRIPTION_RB("elm.padding.right", "elm.padding.bottom",
24079                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
24080                min: 0 60;
24081                text {
24082                   font: "SLP:style=Medium";
24083                   size: GENLIST_LIST_SUB_TEXT_SIZE;
24084                   min: 1 1;
24085                   align: 0.5 0.5;
24086                   text_class: "slp_medium";
24087                }
24088             )
24089             description { state: "selected" 0.0;
24090                inherit: "default" 0.0;
24091                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
24092             }
24093             GENLIST_DESCRIPTION_FLIP_ENABLED
24094          }
24095          GENLIST_PART_PADDING_RIGHT_TO("elm.padding.text2.left", "elm.text.2", GENLIST_PADDING_SIZE_DEFAULT)
24096          part { name: "elm.text.3";
24097             clip_to: "disclip";
24098             type: TEXT;
24099             scale: 1;
24100             GENLIST_DESCRIPTION_LRB("elm.padding.icon1.right", "elm.padding.text2.left", "elm.padding.bottom",
24101                color: GENLIST_LIST_SUB_TEXT_DEFAULT_COLOR;
24102                align: 0 1;
24103                min: 0 48;
24104                text {
24105                   font: "SLP:style=Medium";
24106                   size: GENLIST_LIST_SUB_TEXT_SIZE;
24107                   min: 0 1;
24108                   align: 0.0 0.5;
24109                   text_class: "slp_medium";
24110                }
24111             )
24112             description { state: "selected" 0.0;
24113                inherit: "default" 0.0;
24114                color: GENLIST_LIST_SUB_TEXT_FOCUS_COLOR;
24115             }
24116             GENLIST_DESCRIPTION_FLIP_ENABLED
24117          }
24118          GENLIST_PART_FLIP
24119          GENLIST_PART_DISCLIP
24120       }
24121       programs {
24122          // signal: elm,state,%s,active
24123          //   a "check" item named %s went active
24124          // signal: elm,state,%s,passive
24125          //   a "check" item named %s went passive
24126          // default is passive
24127          program { name: "go_active";
24128             signal: "elm,state,selected";
24129             source: "elm";
24130             action: STATE_SET "selected" 0.0;
24131             target: "bg_image";
24132             target: "elm.text.1";
24133             target: "elm.text.2";
24134             target: "elm.text.3";
24135          }
24136          program { name: "go_passive";
24137             signal: "elm,state,unselected";
24138             source: "elm";
24139             action: STATE_SET "default" 0.0;
24140             target: "bg_image";
24141             target: "elm.text.1";
24142             target: "elm.text.2";
24143             target: "elm.text.3";
24144             transition: LINEAR 0.1;
24145          }
24146          program { name: "go_read";
24147             signal: "elm,state,read";
24148             source: "elm";
24149             action: STATE_SET "read" 0.0;
24150             target: "elm.text.1";
24151          }
24152          program { name: "go_unread";
24153             signal: "elm,state,unread";
24154             source: "elm";
24155             action: STATE_SET "default" 0.0;
24156             target: "elm.text.1";
24157          }
24158       }
24159    }
24160    // 2.2.2.43
24161    group { name: "elm/genlist/item/2text.4icon.1/default";
24162       alias: "elm/genlist/item_odd/2text.4icon.1/default";
24163       alias: "elm/genlist/item_compress/2text.4icon.1/default";
24164       alias: "elm/genlist/item_compress_odd/2text.4icon.1/default";
24165       data.item: "texts" "elm.text.1 elm.text.2";
24166       data.item: "stacking" "above";
24167       data.item: "selectraise" "on";
24168       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
24169       data.item: "flips" "elm.flip.content";
24170       parts {
24171          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24172          GENLIST_PART_BG_IMAGE
24173          GENLIST_PART_BOTTOM_LINE
24174          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24175          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24176          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24177          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24178          part { name: "elm.icon.1";
24179             clip_to: "disclip";
24180             type: SWALLOW;
24181             scale: 1;
24182             description { state: "default" 0.0;
24183                min: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
24184                max: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
24185                fixed: 1 1;
24186                rel1 {
24187                   relative: 0.0 1.0;
24188                   to_x: "elm.padding.right";
24189                   to_y: "elm.padding.top";
24190                }
24191                rel2 {
24192                   relative: 0.0 0.0;
24193                   to_x: "elm.padding.right";
24194                   to_y: "elm.padding.bottom";
24195                }
24196                align: 1.0 0.5;
24197             }
24198             GENLIST_DESCRIPTION_FLIP_ENABLED
24199          }
24200          part { name: "elm.padding.text1.right";
24201             clip_to: "disclip";
24202             type: RECT;
24203             scale: 1;
24204             description { state: "default" 0.0;
24205                fixed: 1 1 ;
24206                align: 1.0 0.0;
24207                visible: 0;
24208                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24209                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24210                rel1 { relative: 0.0 1.0;
24211                   to_x: "elm.icon.1";
24212                   to_y: "elm.padding.top";
24213                }
24214                rel2 { relative: 0.0 1.0;
24215                   to_x: "elm.icon.1";
24216                   to_y: "elm.padding.top";
24217                }
24218             }
24219          }
24220          part { name: "elm.text.1";
24221             clip_to: "disclip";
24222             type: TEXT;
24223             scale: 1;
24224             description { state: "default" 0.0;
24225                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24226                fixed: 0 1;
24227                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24228                rel1 { relative: 1.0 1.0;
24229                   to_x: "elm.padding.left";
24230                   to_y: "elm.padding.top";
24231                }
24232                rel2 { relative: 0.0 1.0;
24233                   to_x: "elm.padding.text1.right";
24234                   to_y: "elm.padding.text1.right";
24235                }
24236                text {
24237                   font: "SLP:style=Roman";
24238                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
24239                   min: 0 1;
24240                   align: 0.0 0.5;
24241                   text_class: "list_item";
24242                }
24243             }
24244             description { state: "read" 0.0;
24245                inherit: "default" 0.0;
24246                color: GENLIST_LIST_MAIN_TEXT_READ_COLOR;
24247             }
24248             description { state: "selected" 0.0;
24249                inherit: "default" 0.0;
24250                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
24251             }
24252             GENLIST_DESCRIPTION_FLIP_ENABLED
24253          }
24254          part { name: "elm.padding.icon2.right";
24255             clip_to: "disclip";
24256             type: RECT;
24257             scale: 1;
24258             description { state: "default" 0.0;
24259                fixed: 1 1;
24260                align: 1.0 0.0;
24261                visible: 0;
24262                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24263                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24264                rel1 { relative: 0 1;
24265                   to_x: "elm.icon.1";
24266                   to_y: "elm.text.1";
24267                }
24268                rel2 { relative: 0 0;
24269                   to_x: "elm.icon.1";
24270                   to_y: "elm.padding.bottom";
24271                }
24272             }
24273          }
24274          part { name: "elm.icon.2";
24275             clip_to: "disclip";
24276             type: SWALLOW;
24277             scale: 1;
24278             description { state: "default" 0.0;
24279                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24280                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24281                fixed: 1 1;
24282                rel1 {
24283                   relative: 0.0 1.0;
24284                   to_x: "elm.padding.icon2.right";
24285                   to_y: "elm.text.1";
24286                }
24287                rel2 {
24288                   relative: 0.0 0.0;
24289                   to_x: "elm.padding.icon2.right";
24290                   to_y: "elm.padding.bottom";
24291                }
24292                align: 1.0 0.5;
24293             }
24294             GENLIST_DESCRIPTION_FLIP_ENABLED
24295          }
24296          part { name: "elm.padding.icon3.right";
24297             clip_to: "disclip";
24298             type: RECT;
24299             scale: 1;
24300             description { state: "default" 0.0;
24301                fixed: 1 1;
24302                align: 1.0 0.0;
24303                visible: 0;
24304                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24305                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24306                rel1 { relative: 0 1;
24307                   to_x: "elm.icon.2";
24308                   to_y: "elm.text.1";
24309                }
24310                rel2 { relative: 0 0;
24311                   to_x: "elm.icon.2";
24312                   to_y: "elm.padding.bottom";
24313                }
24314             }
24315          }
24316          part { name: "elm.icon.3";
24317             clip_to: "disclip";
24318             type: SWALLOW;
24319             scale: 1;
24320             description { state: "default" 0.0;
24321                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24322                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24323                fixed: 1 1;
24324                rel1 {
24325                   relative: 0.0 1.0;
24326                   to_x: "elm.padding.icon3.right";
24327                   to_y: "elm.text.1";
24328                }
24329                rel2 {
24330                   relative: 0.0 0.0;
24331                   to_x: "elm.padding.icon3.right";
24332                   to_y: "elm.padding.bottom";
24333                }
24334                align: 1.0 0.5;
24335             }
24336             GENLIST_DESCRIPTION_FLIP_ENABLED
24337          }
24338          part { name: "elm.padding.icon4.right";
24339             clip_to: "disclip";
24340             type: RECT;
24341             scale: 1;
24342             description { state: "default" 0.0;
24343                fixed: 1 1;
24344                align: 1.0 0.0;
24345                visible: 0;
24346                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24347                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24348                rel1 { relative: 0 1;
24349                   to_x: "elm.icon.3";
24350                   to_y: "elm.text.1";
24351                }
24352                rel2 { relative: 0 0;
24353                   to_x: "elm.icon.3";
24354                   to_y: "elm.padding.bottom";
24355                }
24356             }
24357          }
24358          part { name: "elm.icon.4";
24359             clip_to: "disclip";
24360             type: SWALLOW;
24361             scale: 1;
24362             description { state: "default" 0.0;
24363                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24364                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
24365                fixed: 1 1;
24366                rel1 {
24367                   relative: 0.0 1.0;
24368                   to_x: "elm.padding.icon4.right";
24369                   to_y: "elm.text.1";
24370                }
24371                rel2 {
24372                   relative: 0.0 0.0;
24373                   to_x: "elm.padding.icon4.right";
24374                   to_y: "elm.padding.bottom";
24375                }
24376                align: 1.0 0.5;
24377             }
24378             GENLIST_DESCRIPTION_FLIP_ENABLED
24379          }
24380          part { name: "elm.padding.text2.right";
24381             clip_to: "disclip";
24382             type: RECT;
24383             scale: 1;
24384             description { state: "default" 0.0;
24385                fixed: 1 1;
24386                align: 1.0 0.0;
24387                visible: 0;
24388                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24389                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24390                rel1 { relative: 0 1;
24391                   to_x: "elm.icon.4";
24392                   to_y: "elm.text.1";
24393                }
24394                rel2 { relative: 0 0;
24395                   to_x: "elm.icon.4";
24396                   to_y: "elm.padding.bottom";
24397                }
24398             }
24399          }
24400          part { name: "elm.text.2";
24401             clip_to: "disclip";
24402             type: TEXT;
24403             scale: 1;
24404             description { state: "default" 0.0;
24405                color: GENLIST_NAME_TEXT_COLOR;
24406                fixed: 0 1;
24407                align: 0.0 0.0;
24408                min: 0 GENLIST_SIZE_48_INC;
24409                rel1 { relative: 1 1;
24410                   to_x: "elm.padding.left";
24411                   to_y: "elm.text.1";
24412                }
24413                rel2 { relative: 0 1;
24414                   to_x: "elm.padding.text2.right";
24415                   to_y: "elm.padding.text2.right";
24416                }
24417                text {
24418                   font: "SLP:style=Medium";
24419                   size: GENLIST_FONT_32_INC;
24420                   min: 0 1;
24421                   align: 0.0 0.5;
24422                   text_class: "slp_medium";
24423                }
24424             }
24425             description { state: "selected" 0.0;
24426                inherit: "default" 0.0;
24427                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
24428             }
24429             GENLIST_DESCRIPTION_FLIP_ENABLED
24430          }
24431          GENLIST_PART_FLIP
24432          GENLIST_PART_DISCLIP
24433       }
24434       programs {
24435          // signal: elm,state,%s,active
24436          //   a "check" item named %s went active
24437          // signal: elm,state,%s,passive
24438          //   a "check" item named %s went passive
24439          // default is passive
24440          program { name: "go_active";
24441             signal: "elm,state,selected";
24442             source: "elm";
24443             action: STATE_SET "selected" 0.0;
24444             target: "bg_image";
24445             target: "elm.text.1";
24446          }
24447          program { name: "go_passive";
24448             signal: "elm,state,unselected";
24449             source: "elm";
24450             action: STATE_SET "default" 0.0;
24451             target: "bg_image";
24452             target: "elm.text.1";
24453             transition: LINEAR 0.1;
24454          }
24455          program { name: "go_read";
24456             signal: "elm,state,read";
24457             source: "elm";
24458             action: STATE_SET "read" 0.0;
24459             target: "elm.text.1";
24460          }
24461          program { name: "go_unread";
24462             signal: "elm,state,unread";
24463             source: "elm";
24464             action: STATE_SET "default" 0.0;
24465             target: "elm.text.1";
24466          }
24467       }
24468    }
24469
24470    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.2/default";
24471       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.2/default";
24472       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.2/default";
24473       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.2/default";
24474       alias: "elm/genlist/item/dialogue.2text.1icon.2/default";
24475       alias: "elm/genlist/item_odd/dialogue.2text.1icon.2/default";
24476       alias: "elm/genlist/item_compress/dialogue.2text.1icon.2/default";
24477       alias: "elm/genlist/item_compress_odd/dialogue.2text.1icon.2/default";
24478       alias: "elm/layout/dialogue/bg/2text.1icon.2";
24479       data.item: "stacking" "above";
24480       data.item: "selectraise" "on";
24481       data.item: "texts" "elm.text.1 elm.text.2";
24482       data.item: "contents" "elm.icon";
24483       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
24484       images {
24485           image: "00_list_thumbnail_bg.png" COMP;
24486       }
24487       parts {
24488          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_291_INC )
24489          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
24490          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_32_INC )
24491          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24492          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24493          part { name: "elm.icon.bg";
24494             scale: 1;
24495             description { state: "default" 0.0;
24496                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
24497                fixed: 1 1;
24498                align: 0.0 0.8;
24499                rel1 {
24500                   relative: 1.0 0.5;
24501                   to_x: "elm.padding.left";
24502                }
24503                rel2 {
24504                   relative: 1.0 0.5;
24505                   to_x: "elm.padding.left";
24506                }
24507                image {
24508                   normal: "00_list_thumbnail_bg.png";
24509                   border: 1 1 1 1;
24510                   border_scale: 1;
24511                   middle: NONE;
24512                }
24513             }
24514          }
24515          part { name: "elm.icon";
24516             type: SWALLOW;
24517             description { state: "default" 0.0;
24518                rel1.to: "elm.icon.bg";
24519                rel2.to: "elm.icon.bg";
24520             }
24521          }
24522          part { name: "elm.padding.icon.right";
24523             type: RECT;
24524             mouse_events: 0;
24525             scale: 1;
24526             description { state: "default" 0.0;
24527                min: GENLIST_PADDING_16_INC 0;
24528                fixed: 1 0;
24529                rel1 {
24530                    relative: 1.0 0.0;
24531                    to_x: "elm.icon.bg";
24532                }
24533                rel2.to_x: "elm.icon.bg";
24534                visible: 0;
24535                align: 0.0 0.5;
24536             }
24537          }
24538          part { name: "elm.padding.text.left";
24539             type: RECT;
24540             mouse_events: 0;
24541             scale: 1;
24542             description { state: "default" 0.0;
24543                min: GENLIST_PADDING_16_INC 0;
24544                fixed: 1 0;
24545                rel1 {
24546                    relative: 1.0 1.0;
24547                    to_x: "elm.padding.icon.right";
24548                    to_y: "elm.padding.top";
24549                }
24550                rel2.to_x: "elm.padding.icon.right";
24551                visible: 0;
24552                align: 1.0 0.5;
24553             }
24554          }
24555          part { name: "vertical_line";
24556             type: RECT;
24557             mouse_events: 0;
24558             description { state: "default" 0.0;
24559                min: 1 0;
24560                fixed: 1 0;
24561                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24562                rel1 {
24563                   relative: 1.0 1.0;
24564                   to_x: "elm.padding.text.left";
24565                   to_y: "elm.padding.top";
24566                }
24567                rel2 {
24568                   relative: 1.0 0.0;
24569                   to_x: "elm.padding.text.left";
24570                   to_y: "elm.padding.bottom";
24571                }
24572                align: 0.0 0.5;
24573             }
24574          }
24575          part { name: "text_vertical_rect";
24576             type: RECT;
24577             mouse_events: 0;
24578             description { state: "default" 0.0;
24579                min: GENLIST_PADDING_16_INC 0;
24580                fixed: 1 0;
24581                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
24582                rel1 {
24583                   relative: 1.0 1.0;
24584                   to_x: "vertical_line";
24585                   to_y: "elm.padding.top";
24586                }
24587                rel2 {
24588                   relative: 1.0 0.0;
24589                   to_x: "elm.padding.text.left";
24590                   to_y: "elm.padding.bottom";
24591                }
24592                align: 0.0 0.5;
24593             }
24594          }
24595          part { name: "elm.padding.text.right";
24596             type: RECT;
24597             mouse_events: 0;
24598             scale: 1;
24599             description { state: "default" 0.0;
24600                min: GENLIST_PADDING_16_INC 0;
24601                fixed: 1 0;
24602                rel1 {
24603                    relative: 1.0 0.0;
24604                    to_x: "text_vertical_rect";
24605                }
24606                rel2.to_x: "text_vertical_rect";
24607                visible: 0;
24608                align: 0.0 0.5;
24609             }
24610          }
24611          part { name: "text_top_line";
24612             type: RECT;
24613             mouse_events: 0;
24614             description { state: "default" 0.0;
24615                min: 0 1;
24616                fixed: 0 1;
24617                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24618                rel1 {
24619                   relative: 1.0 0.0;
24620                   to_x: "text_vertical_rect";
24621                   to_y: "text_vertical_rect";
24622                }
24623                rel2 {
24624                   relative: 1.0 0.0;
24625                   to_y: "text_vertical_rect";
24626                }
24627                align: 0.0 0.0;
24628             }
24629          }
24630          part { name: "text_center_line";
24631             type: RECT;
24632             mouse_events: 0;
24633             description { state: "default" 0.0;
24634                min: 0 1;
24635                fixed: 0 1;
24636                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24637                rel1 {
24638                   relative: 1.0 0.5;
24639                   to_x: "text_vertical_rect";
24640                }
24641                rel2.relative: 1.0 0.5;
24642                align: 0.5 0.5;
24643             }
24644          }
24645          part { name: "text_bottom_line";
24646             type: RECT;
24647             mouse_events: 0;
24648             description { state: "default" 0.0;
24649                min: 0 1;
24650                fixed: 0 1;
24651                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24652                rel1 {
24653                   relative: 1.0 1.0;
24654                   to_x: "text_vertical_rect";
24655                   to_y: "text_vertical_rect";
24656                }
24657                rel2 {
24658                   relative: 1.0 1.0;
24659                   to_y: "text_vertical_rect";
24660                }
24661                align: 0.0 1.0;
24662             }
24663          }
24664          part { name: "elm.text.bg.1";
24665             clip_to: "disclip";
24666             type: RECT;
24667             mouse_events: 0;
24668             scale: 1;
24669             description { state: "default" 0.0;
24670                rel1 {
24671                   relative: 1.0 1.0;
24672                   to_x: "text_vertical_rect";
24673                   to_y: "text_top_line";
24674                }
24675                rel2 {
24676                   relative: 1.0 0.0;
24677                   to_x: "elm.padding.right";
24678                   to_y: "text_center_line";
24679                }
24680                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
24681             }
24682          }
24683          part { name: "elm.text.1";
24684             type: TEXT;
24685             mouse_events: 0;
24686             scale: 1;
24687             description { state: "default" 0.0;
24688                min: 0 GENLIST_SIZE_54_INC;
24689                rel1 {
24690                   relative: 1.0 0.0;
24691                   to_x: "elm.padding.text.right";
24692                   to_y: "elm.text.bg.1";
24693                }
24694                rel2 {
24695                   relative: 0.0 1.0;
24696                   to_x: "elm.padding.right";
24697                   to_y: "elm.text.bg.1";
24698                }
24699                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24700                text {
24701                   font: "SLP:style=Roman";
24702                   size: GENLIST_FONT_48_INC;
24703                   align: 0.0 0.5;
24704                   text_class: "list_item";
24705                }
24706             }
24707             GENLIST_DESCRIPTION_FLIP_ENABLED
24708          }
24709          part { name: "elm.flip.content.1";
24710             clip_to: "disclip";
24711             type: SWALLOW;
24712             description { state: "default" 0.0;
24713                visible: 0;
24714                fixed: 1 1;
24715                rel1.to: "elm.text.1";
24716                rel2.to: "elm.text.1";
24717             }
24718             description { state: "flip_enabled" 0.0;
24719                inherit: "default" 0.0;
24720                visible: 1;
24721             }
24722          }
24723          part { name: "elm.text.bg.2";
24724             clip_to: "disclip";
24725             type: RECT;
24726             mouse_events: 0;
24727             scale: 1;
24728             description { state: "default" 0.0;
24729                rel1 {
24730                   relative: 1.0 1.0;
24731                   to_x: "text_vertical_rect";
24732                   to_y: "text_center_line";
24733                }
24734                rel2 {
24735                   relative: 1.0 0.0;
24736                   to_x: "elm.padding.right";
24737                   to_y: "text_bottom_line";
24738                }
24739                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
24740             }
24741          }
24742          part { name: "elm.text.2";
24743             clip_to: "disclip";
24744             type: TEXT;
24745             mouse_events: 0;
24746             scale: 1;
24747             description { state: "default" 0.0;
24748                min: 0 GENLIST_SIZE_54_INC;
24749                rel1 {
24750                   relative: 1.0 0.0;
24751                   to_x: "elm.padding.text.right";
24752                   to_y: "elm.text.bg.2";
24753                }
24754                rel2 {
24755                   relative: 0.0 1.0;
24756                   to_x: "elm.padding.right";
24757                   to_y: "elm.text.bg.2";
24758                }
24759                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
24760                text {
24761                   font: "SLP:style=Roman";
24762                   size: GENLIST_FONT_48_INC;
24763                   align: 0.0 0.5;
24764                   text_class: "slp_roman";
24765                }
24766             }
24767             GENLIST_DESCRIPTION_FLIP_ENABLED
24768          }
24769          part { name: "elm.flip.content.2";
24770             clip_to: "disclip";
24771             type: SWALLOW;
24772             description { state: "default" 0.0;
24773                visible: 0;
24774                fixed: 1 1;
24775                rel1.to: "elm.text.2";
24776                rel2.to: "elm.text.2";
24777             }
24778             description { state: "flip_enabled" 0.0;
24779                inherit: "default" 0.0;
24780                visible: 1;
24781             }
24782          }
24783          GENLIST_PART_DISCLIP
24784       }
24785       programs {
24786          // signal: elm,state,%s,active
24787          //   a "check" item named %s went active
24788          // signal: elm,state,%s,passive
24789          //   a "check" item named %s went passive
24790          // default is passive
24791          /*program { name: "go_active";
24792             signal: "elm,state,selected";
24793             source: "elm";
24794             action: STATE_SET "selected" 0.0;
24795             target: "elm.text";
24796             target: "elm.text.sub";
24797          }
24798          program { name: "go_passive";
24799             signal: "elm,state,unselected";
24800             source: "elm";
24801             action: STATE_SET "default" 0.0;
24802             target: "elm.text";
24803             target: "elm.text.sub";
24804             transition: LINEAR 0.1;
24805          }*/
24806          program { name: "go_disabled";
24807             signal: "elm,state,disabled";
24808             source: "elm";
24809             action: STATE_SET "disabled" 0.0;
24810             target: "disclip";
24811          }
24812          program { name: "go_enabled";
24813             signal: "elm,state,enabled";
24814             source: "elm";
24815             action: STATE_SET "default" 0.0;
24816             target: "disclip";
24817          }
24818          program { name: "flip_enabled";
24819             signal: "elm,state,flip,enabled";
24820             source: "elm";
24821             action: STATE_SET "flip_enabled" 0.0;
24822             target: "elm.text.1";
24823             target: "elm.text.2";
24824             target: "elm.flip.content.1";
24825             target: "elm.flip.content.2";
24826          }
24827          program { name: "flip_disabled";
24828             signal: "elm,state,flip,disabled";
24829             source: "elm";
24830             action: STATE_SET "default" 0.0;
24831             target: "elm.text.1";
24832             target: "elm.text.2";
24833             target: "elm.flip.content.1";
24834             target: "elm.flip.content.2";
24835          }
24836       }
24837    }
24838
24839 /* non-bottom-border-area version of 2text.1icon.2 */
24840    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.3/default";
24841       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.3/default";
24842       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.3/default";
24843       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.3/default";
24844       alias: "elm/layout/dialogue/bg/2text.1icon.3";
24845       data.item: "stacking" "above";
24846       data.item: "selectraise" "on";
24847       data.item: "texts" "elm.text.1 elm.text.2";
24848       data.item: "contents" "elm.icon";
24849       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
24850       images {
24851           image: "00_list_thumbnail_bg.png" COMP;
24852       }
24853       parts {
24854          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_260_INC )
24855          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
24856          GENLIST_PART_PADDING_BOTTOM( 0 )
24857          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24858          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24859          part { name: "elm.icon.bg";
24860             scale: 1;
24861             description { state: "default" 0.0;
24862                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
24863                fixed: 1 1;
24864                align: 0.0 0.7;
24865                rel1 {
24866                   relative: 1.0 0.5;
24867                   to_x: "elm.padding.left";
24868                }
24869                rel2 {
24870                   relative: 1.0 0.5;
24871                   to_x: "elm.padding.left";
24872                }
24873                image {
24874                   normal: "00_list_thumbnail_bg.png";
24875                   border: 1 1 1 1;
24876                   border_scale: 1;
24877                   middle: NONE;
24878                }
24879             }
24880          }
24881          part { name: "elm.icon";
24882             type: SWALLOW;
24883             description { state: "default" 0.0;
24884                rel1.to: "elm.icon.bg";
24885                rel2.to: "elm.icon.bg";
24886             }
24887          }
24888          part { name: "elm.padding.icon.right";
24889             type: RECT;
24890             mouse_events: 0;
24891             scale: 1;
24892             description { state: "default" 0.0;
24893                min: GENLIST_PADDING_16_INC 0;
24894                fixed: 1 0;
24895                rel1 {
24896                    relative: 1.0 0.0;
24897                    to_x: "elm.icon.bg";
24898                }
24899                rel2.to_x: "elm.icon.bg";
24900                visible: 0;
24901                align: 0.0 0.5;
24902             }
24903          }
24904          part { name: "elm.padding.text.left";
24905             type: RECT;
24906             mouse_events: 0;
24907             scale: 1;
24908             description { state: "default" 0.0;
24909                min: GENLIST_PADDING_16_INC 0;
24910                fixed: 1 0;
24911                rel1 {
24912                    relative: 1.0 1.0;
24913                    to_x: "elm.padding.icon.right";
24914                    to_y: "elm.padding.top";
24915                }
24916                rel2.to_x: "elm.padding.icon.right";
24917                visible: 0;
24918                align: 1.0 0.5;
24919             }
24920          }
24921          part { name: "vertical_line";
24922             type: RECT;
24923             mouse_events: 0;
24924             description { state: "default" 0.0;
24925                visible: 0;
24926                rel1 {
24927                   relative: 1.0 1.0;
24928                   to_x: "elm.padding.text.left";
24929                   to_y: "elm.padding.top";
24930                }
24931                rel2 {
24932                   relative: 1.0 0.0;
24933                   to_x: "elm.padding.text.left";
24934                   to_y: "elm.padding.bottom";
24935                }
24936             }
24937          }
24938          part { name: "text_vertical_rect";
24939             type: RECT;
24940             mouse_events: 0;
24941             scale: 1;
24942             description { state: "default" 0.0;
24943                min: GENLIST_SIZE_16_INC 0;
24944                fixed: 1 0;
24945                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
24946                rel1 {
24947                   relative: 1.0 1.0;
24948                   to_x: "vertical_line";
24949                   to_y: "elm.padding.top";
24950                }
24951                rel2 {
24952                   relative: 1.0 0.0;
24953                   to_x: "elm.padding.text.left";
24954                   to_y: "elm.padding.bottom";
24955                }
24956                align: 0.0 0.5;
24957             }
24958          }
24959          part { name: "elm.padding.text.right";
24960             type: RECT;
24961             mouse_events: 0;
24962             scale: 1;
24963             description { state: "default" 0.0;
24964                min: GENLIST_PADDING_16_INC 0;
24965                fixed: 1 0;
24966                rel1 {
24967                    relative: 1.0 0.0;
24968                    to_x: "text_vertical_rect";
24969                }
24970                rel2.to_x: "text_vertical_rect";
24971                visible: 0;
24972                align: 0.0 0.5;
24973             }
24974          }
24975          part { name: "text_top_line";
24976             type: RECT;
24977             mouse_events: 0;
24978             description { state: "default" 0.0;
24979                min: 0 1;
24980                fixed: 0 1;
24981                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24982                rel1 {
24983                   relative: 1.0 0.0;
24984                   to_x: "text_vertical_rect";
24985                   to_y: "text_vertical_rect";
24986                }
24987                rel2 {
24988                   relative: 1.0 0.0;
24989                   to_y: "text_vertical_rect";
24990                }
24991                align: 0.0 0.0;
24992             }
24993          }
24994          part { name: "text_center_line";
24995             type: RECT;
24996             mouse_events: 0;
24997             description { state: "default" 0.0;
24998                min: 0 1;
24999                fixed: 0 1;
25000                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25001                rel1 {
25002                   relative: 1.0 0.56;
25003                   to_x: "text_vertical_rect";
25004                }
25005                rel2.relative: 1.0 0.56;
25006                align: 0.5 0.5;
25007             }
25008          }
25009          part { name: "text_bottom_line";
25010             type: RECT;
25011             mouse_events: 0;
25012             description { state: "default" 0.0;
25013                min: 0 1;
25014                fixed: 0 1;
25015                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25016                rel1 {
25017                   relative: 1.0 1.0;
25018                   to_x: "text_vertical_rect";
25019                   to_y: "text_vertical_rect";
25020                }
25021                rel2 {
25022                   relative: 1.0 1.0;
25023                   to_y: "text_vertical_rect";
25024                }
25025                align: 0.0 1.0;
25026             }
25027          }
25028          part { name: "elm.text.bg.1";
25029             clip_to: "disclip";
25030             type: RECT;
25031             mouse_events: 0;
25032             scale: 1;
25033             description { state: "default" 0.0;
25034                rel1 {
25035                   relative: 1.0 1.0;
25036                   to_x: "text_vertical_rect";
25037                   to_y: "text_top_line";
25038                }
25039                rel2 {
25040                   relative: 1.0 0.0;
25041                   to_x: "elm.padding.right";
25042                   to_y: "text_center_line";
25043                }
25044                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
25045             }
25046          }
25047          part { name: "elm.text.1";
25048             type: TEXT;
25049             mouse_events: 0;
25050             scale: 1;
25051             description { state: "default" 0.0;
25052                min: 0 GENLIST_SIZE_54_INC;
25053                rel1 {
25054                   relative: 1.0 0.0;
25055                   to_x: "elm.padding.text.right";
25056                   to_y: "elm.text.bg.1";
25057                }
25058                rel2 {
25059                   relative: 0.0 1.0;
25060                   to_x: "elm.padding.right";
25061                   to_y: "elm.text.bg.1";
25062                }
25063                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
25064                text {
25065                   font: "SLP:style=Roman";
25066                   size: GENLIST_FONT_48_INC;
25067                   align: 0.0 0.5;
25068                   text_class: "list_item";
25069                }
25070             }
25071             GENLIST_DESCRIPTION_FLIP_ENABLED
25072          }
25073          part { name: "elm.flip.content.1";
25074             type: SWALLOW;
25075             description { state: "default" 0.0;
25076                visible: 0;
25077                fixed: 1 1;
25078                rel1.to: "elm.text.1";
25079                rel2.to: "elm.text.1";
25080             }
25081             description { state: "flip_enabled" 0.0;
25082                inherit: "default" 0.0;
25083                visible: 1;
25084             }
25085          }
25086          part { name: "elm.text.bg.2";
25087             clip_to: "disclip";
25088             type: RECT;
25089             mouse_events: 0;
25090             scale: 1;
25091             description { state: "default" 0.0;
25092                rel1 {
25093                   relative: 1.0 1.0;
25094                   to_x: "text_vertical_rect";
25095                   to_y: "text_center_line";
25096                }
25097                rel2 {
25098                   relative: 1.0 0.0;
25099                   to_x: "elm.padding.right";
25100                   to_y: "text_bottom_line";
25101                }
25102                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
25103             }
25104          }
25105          part { name: "elm.text.2";
25106             clip_to: "disclip";
25107             type: TEXT;
25108             mouse_events: 0;
25109             scale: 1;
25110             description { state: "default" 0.0;
25111                min: 0 GENLIST_SIZE_54_INC;
25112                rel1 {
25113                   relative: 1.0 0.0;
25114                   to_x: "elm.padding.text.right";
25115                   to_y: "elm.text.bg.2";
25116                }
25117                rel2 {
25118                   relative: 0.0 1.0;
25119                   to_x: "elm.padding.right";
25120                   to_y: "elm.text.bg.2";
25121                }
25122                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
25123                text {
25124                   font: "SLP:style=Roman";
25125                   size: GENLIST_FONT_48_INC;
25126                   text_class: "slp_roman";
25127                }
25128             }
25129             GENLIST_DESCRIPTION_FLIP_ENABLED
25130          }
25131          part { name: "elm.flip.content.2";
25132             type: SWALLOW;
25133             description { state: "default" 0.0;
25134                visible: 0;
25135                fixed: 1 1;
25136                rel1.to: "elm.text.2";
25137                rel2.to: "elm.text.2";
25138             }
25139             description { state: "flip_enabled" 0.0;
25140                inherit: "default" 0.0;
25141                visible: 1;
25142             }
25143          }
25144          GENLIST_PART_DISCLIP
25145       }
25146       programs {
25147          // signal: elm,state,%s,active
25148          //   a "check" item named %s went active
25149          // signal: elm,state,%s,passive
25150          //   a "check" item named %s went passive
25151          // default is passive
25152          /*program { name: "go_active";
25153             signal: "elm,state,selected";
25154             source: "elm";
25155             action: STATE_SET "selected" 0.0;
25156             target: "elm.text";
25157             target: "elm.text.sub";
25158          }
25159          program { name: "go_passive";
25160             signal: "elm,state,unselected";
25161             source: "elm";
25162             action: STATE_SET "default" 0.0;
25163             target: "elm.text";
25164             target: "elm.text.sub";
25165             transition: LINEAR 0.1;
25166          }*/
25167          program { name: "go_disabled";
25168             signal: "elm,state,disabled";
25169             source: "elm";
25170             action: STATE_SET "disabled" 0.0;
25171             target: "disclip";
25172          }
25173          program { name: "go_enabled";
25174             signal: "elm,state,enabled";
25175             source: "elm";
25176             action: STATE_SET "default" 0.0;
25177             target: "disclip";
25178          }
25179          program { name: "flip_enabled";
25180             signal: "elm,state,flip,enabled";
25181             source: "elm";
25182             action: STATE_SET "flip_enabled" 0.0;
25183             target: "elm.text.1";
25184             target: "elm.text.2";
25185             target: "elm.flip.content.1";
25186             target: "elm.flip.content.2";
25187          }
25188          program { name: "flip_disabled";
25189             signal: "elm,state,flip,disabled";
25190             source: "elm";
25191             action: STATE_SET "default" 0.0;
25192             target: "elm.text.1";
25193             target: "elm.text.2";
25194             target: "elm.flip.content.1";
25195             target: "elm.flip.content.2";
25196          }
25197       }
25198    }
25199
25200    ///////// will be removed /////////
25201    group { name: "elm/genlist/item/dialogue/1icon.2/default";
25202       alias: "elm/genlist/item_odd/dialogue/1icon.2/default";
25203       alias: "elm/genlist/item_compress/dialogue/1icon.2/default";
25204       alias: "elm/genlist/item_compress_odd/dialogue/1icon.2/default";
25205       alias: "elm/layout/dialogue/1icon.2";
25206       data.item: "stacking" "above";
25207       data.item: "selectraise" "on";
25208       data.item: "contents" "elm.icon";
25209
25210       parts {
25211          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
25212          GENLIST_PART_DIALOGUE_BG_IMAGE
25213          GENLIST_PART_BOTTOM_LINE
25214          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
25215          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25216          GENLIST_PART_DIALOGUE_ITEM
25217          GENLIST_PART_DIALOGUE_RIGHT_LINE
25218          part { name: "elm.icon";
25219             clip_to: "disclip";
25220             type: SWALLOW;
25221             scale: 1;
25222             description { state: "default" 0.0;
25223                rel1 {
25224                   relative: 1.0 0.0;
25225                   to_x: "elm.padding.left";
25226                }
25227                rel2 {
25228                   relative: 0.0 1.0;
25229                   to_x: "elm.padding.right";
25230                }
25231             }
25232          }
25233          GENLIST_PART_DISCLIP
25234       }
25235       programs {
25236          // signal: elm,state,%s,active
25237          //   a "check" item named %s went active
25238          // signal: elm,state,%s,passive
25239          //   a "check" item named %s went passive
25240          // default is passive
25241          /*program { name: "go_active";
25242             signal: "elm,state,selected";
25243             source: "elm";
25244             action: STATE_SET "selected" 0.0;
25245             target: "bg_image";
25246             target: "elm.text";
25247          }
25248          program { name: "go_passive";
25249             signal: "elm,state,unselected";
25250             source: "elm";
25251             action: STATE_SET "default" 0.0;
25252             target: "bg_image";
25253             target: "elm.text";
25254             transition: LINEAR 0.1;
25255          }*/
25256          program { name: "go_disabled";
25257             signal: "elm,state,disabled";
25258             source: "elm";
25259             action: STATE_SET "disabled" 0.0;
25260             target: "disclip";
25261          }
25262          program { name: "go_enabled";
25263             signal: "elm,state,enabled";
25264             source: "elm";
25265             action: STATE_SET "default" 0.0;
25266             target: "disclip";
25267          }
25268       }
25269    }
25270
25271    //////////////////////// will be removed //////////////////////////
25272    group { name: "elm/genlist/item/dialogue/bg/2text.1icon/default";
25273       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon/default";
25274       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon/default";
25275       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon/default";
25276       alias: "elm/genlist/item/dialogue.1icon.2text/default";
25277       alias: "elm/genlist/item_odd/dialogue.1icon.2text/default";
25278       alias: "elm/genlist/item_compress/dialogue.1icon.2text/default";
25279       alias: "elm/genlist/item_compress_odd/dialogue.1icon.2text/default";
25280       alias: "elm/layout/dialogue/bg/2text.1icon";
25281       data.item: "stacking" "above";
25282       data.item: "selectraise" "on";
25283       data.item: "texts" "elm.text.1 elm.text.2";
25284       data.item: "contents" "elm.icon";
25285       images {
25286           image: "00_list_thumbnail_bg.png" COMP;
25287       }
25288       parts {
25289          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_142_INC )
25290          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_24_INC )
25291          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
25292          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
25293          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25294          part { name: "elm.padding.icon.bottom";
25295             type: RECT;
25296             mouse_events: 0;
25297             scale: 1;
25298             description { state: "default" 0.0;
25299                min: 0 1;
25300                fixed: 0 1;
25301                rel1 {
25302                   relative: 0.0 1.0;
25303                   to_x: "elm.padding.right";
25304                }
25305                rel2 {
25306                   relative: 0.0 1.0;
25307                   to_x: "elm.padding.right";
25308                }
25309                align: 1.0 1.0;
25310                visible: 0;
25311             }
25312          }
25313          part { name: "elm.icon.bg";
25314             scale: 1;
25315             description { state: "default" 0.0;
25316                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
25317                fixed: 1 1;
25318                align: 1.0 0.0;
25319                rel1 {
25320                   relative: 0.0 0.0;
25321                   to_x: "elm.padding.right";
25322                }
25323                rel2 {
25324                   relative: 0.0 0.0;
25325                   to_x: "elm.padding.right";
25326                   to_y: "elm.padding.icon.bottom";
25327                }
25328                image {
25329                   normal: "00_list_thumbnail_bg.png";
25330                   border: 1 1 1 1;
25331                   border_scale: 1;
25332                   middle: NONE;
25333                }
25334             }
25335          }
25336          part { name: "elm.icon";
25337             type: SWALLOW;
25338             description { state: "default" 0.0;
25339                rel1.to: "elm.icon.bg";
25340                rel2.to: "elm.icon.bg";
25341             }
25342          }
25343          part { name: "elm.padding.icon.left";
25344             type: RECT;
25345             mouse_events: 0;
25346             scale: 1;
25347             description { state: "default" 0.0;
25348                min: GENLIST_PADDING_16_INC 0;
25349                fixed: 1 0;
25350                rel1 {
25351                    relative: 0.0 0.0;
25352                    to_x: "elm.icon.bg";
25353                }
25354                rel2 {
25355                    relative: 0.0 1.0;
25356                    to_x: "elm.icon.bg";
25357                }
25358                visible: 0;
25359                align: 0.0 0.5;
25360             }
25361          }
25362          part { name: "elm.text.1";
25363             clip_to: "disclip";
25364             type: TEXT;
25365             mouse_events: 0;
25366             scale: 1;
25367             description { state: "default" 0.0;
25368                min: 0 GENLIST_SIZE_54_INC;
25369                fixed: 0 1;
25370                align: 0 0;
25371                rel1 {
25372                   relative: 1.0 1.0;
25373                   to_x: "elm.padding.left";
25374                   to_y: "elm.padding.top";
25375                }
25376                rel2 {
25377                   relative: 0.0 1.0;
25378                   to_x: "elm.padding.icon.left";
25379                   to_y: "elm.padding.top";
25380                }
25381                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
25382                text {
25383                   font: "SLP:style=Roman";
25384                   size: GENLIST_FONT_48_INC;
25385                   align: 0.0 0.5;
25386                   text_class: "list_item";
25387                }
25388             }
25389          }
25390          part { name: "elm.padding.text.1.bottom";
25391             type: RECT;
25392             mouse_events: 0;
25393             scale: 1;
25394             description { state: "default" 0.0;
25395                min: 0 GENLIST_PADDING_8_INC;
25396                fixed: 0 1;
25397                rel1 {
25398                    relative: 0.0 1.0;
25399                    to_y: "elm.text.1";
25400                }
25401                rel2.to_y: "elm.text.1";
25402                visible: 0;
25403                align: 0.0 0.0;
25404             }
25405          }
25406          part { name: "elm.text.2";
25407             clip_to: "disclip";
25408             type: TEXT;
25409             mouse_events: 0;
25410             scale: 1;
25411             description { state: "default" 0.0;
25412                rel1 {
25413                   relative: 1.0 1.0;
25414                   to_x: "elm.padding.left";
25415                   to_y: "elm.padding.text.1.bottom";
25416                }
25417                rel2 {
25418                   relative: 0.0 0.0;
25419                   to_x: "elm.padding.icon.left";
25420                   to_y: "elm.padding.bottom";
25421                }
25422                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
25423                text {
25424                   font: "SLP:style=Medium";
25425                   size: GENLIST_FONT_32_INC;
25426                   align: 0.0 0.5;
25427                   text_class: "slp_medium";
25428                }
25429             }
25430          }
25431          GENLIST_PART_DISCLIP
25432       }
25433       programs {
25434          // signal: elm,state,%s,active
25435          //   a "check" item named %s went active
25436          // signal: elm,state,%s,passive
25437          //   a "check" item named %s went passive
25438          // default is passive
25439          /*program { name: "go_active";
25440             signal: "elm,state,selected";
25441             source: "elm";
25442             action: STATE_SET "selected" 0.0;
25443             target: "elm.text";
25444             target: "elm.text.sub";
25445          }
25446          program { name: "go_passive";
25447             signal: "elm,state,unselected";
25448             source: "elm";
25449             action: STATE_SET "default" 0.0;
25450             target: "elm.text";
25451             target: "elm.text.sub";
25452             transition: LINEAR 0.1;
25453          }*/
25454          program { name: "go_disabled";
25455             signal: "elm,state,disabled";
25456             source: "elm";
25457             action: STATE_SET "disabled" 0.0;
25458             target: "disclip";
25459          }
25460          program { name: "go_enabled";
25461             signal: "elm,state,enabled";
25462             source: "elm";
25463             action: STATE_SET "default" 0.0;
25464             target: "disclip";
25465          }
25466       }
25467    }
25468
25469 // 4.3.2 (old)
25470    group { name: "elm/genlist/item/dialogue/bg/3text.1icon/default";
25471       alias: "elm/genlist/item_odd/dialogue/bg/3text.1icon/default";
25472       alias: "elm/genlist/item_compress/dialogue/bg/3text.1icon/default";
25473       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.1icon/default";
25474       alias: "elm/layout/dialogue/bg/3text.1icon";
25475       data.item: "stacking" "above";
25476       data.item: "selectraise" "on";
25477       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
25478       data.item: "contents" "elm.icon";
25479       images {
25480           image: "00_list_thumbnail_bg.png" COMP;
25481       }
25482       parts {
25483          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
25484          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_34_INC )
25485          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_34_INC )
25486          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
25487          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25488          part { name: "elm.icon.bg";
25489             scale: 1;
25490             description { state: "default" 0.0;
25491                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
25492                fixed: 1 1;
25493                align: 0.0 0.5;
25494                rel1 {
25495                   relative: 1.0 0.5;
25496                   to_x: "elm.padding.left";
25497                }
25498                rel2 {
25499                   relative: 1.0 0.5;
25500                   to_x: "elm.padding.left";
25501                }
25502                image {
25503                   normal: "00_list_thumbnail_bg.png";
25504                   border: 1 1 1 1;
25505                   border_scale: 1;
25506                   middle: NONE;
25507                }
25508             }
25509          }
25510          part { name: "elm.icon";
25511             type: SWALLOW;
25512             description { state: "default" 0.0;
25513                rel1.to: "elm.icon.bg";
25514                rel2.to: "elm.icon.bg";
25515             }
25516          }
25517          part { name: "elm.padding.icon.right";
25518             type: RECT;
25519             mouse_events: 0;
25520             scale: 1;
25521             description { state: "default" 0.0;
25522                min: GENLIST_PADDING_24_INC 0;
25523                fixed: 1 0;
25524                rel1 {
25525                    relative: 1.0 0.0;
25526                    to_x: "elm.icon.bg";
25527                }
25528                rel2.to_x: "elm.icon.bg";
25529                visible: 0;
25530                align: 0.0 0.5;
25531             }
25532          }
25533          part { name: "elm.text.1";
25534             clip_to: "disclip";
25535             type: TEXT;
25536             mouse_events: 0;
25537             scale: 1;
25538             description { state: "default" 0.0;
25539                min: 0 GENLIST_SIZE_54_INC;
25540                fixed: 0 1;
25541                align: 0 0;
25542                rel1 {
25543                   relative: 1.0 1.0;
25544                   to_x: "elm.padding.icon.right";
25545                   to_y: "elm.padding.top";
25546                }
25547                rel2 {
25548                   relative: 0.0 1.0;
25549                   to_x: "elm.padding.right";
25550                   to_y: "elm.padding.top";
25551                }
25552                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
25553                text {
25554                   font: "SLP:style=Roman";
25555                   size: GENLIST_FONT_48_INC;
25556                   align: 0.0 0.0;
25557                   text_class: "list_item";
25558                }
25559             }
25560          }
25561          part { name: "elm.text.2";
25562             clip_to: "disclip";
25563             type: TEXT;
25564             mouse_events: 0;
25565             scale: 1;
25566             description { state: "default" 0.0;
25567                rel1 {
25568                   relative: 1.0 1.0;
25569                   to_x: "elm.padding.icon.right";
25570                   to_y: "elm.text.1";
25571                }
25572                rel2 {
25573                   relative: 0.0 0.0;
25574                   to_x: "elm.padding.right";
25575                   to_y: "elm.text.3";
25576                }
25577                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
25578                text {
25579                   font: "SLP:style=Medium";
25580                   size: GENLIST_FONT_32_INC;
25581                   align: 0.0 1.0;
25582                   text_class: "slp_medium";
25583                }
25584             }
25585          }
25586          part { name: "elm.text.3";
25587             clip_to: "disclip";
25588             type: TEXT;
25589             mouse_events: 0;
25590             scale: 1;
25591             description { state: "default" 0.0;
25592                min: 0 GENLIST_ICON_SMALL_SIZE;
25593                fixed: 0 1;
25594                align: 0 1;
25595                rel1 {
25596                   relative: 1.0 0.0;
25597                   to_x: "elm.padding.icon.right";
25598                   to_y: "elm.padding.bottom";
25599                }
25600                rel2 {
25601                   relative: 0.0 0.0;
25602                   to_x: "elm.padding.right";
25603                   to_y: "elm.padding.bottom";
25604                }
25605                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
25606                text {
25607                   font: "SLP:style=Medium";
25608                   size: GENLIST_FONT_32_INC;
25609                   align: 0.0 1.0;
25610                   text_class: "slp_medium";
25611                }
25612             }
25613          }
25614          GENLIST_PART_DISCLIP
25615       }
25616       programs {
25617          // signal: elm,state,%s,active
25618          //   a "check" item named %s went active
25619          // signal: elm,state,%s,passive
25620          //   a "check" item named %s went passive
25621          // default is passive
25622          /*program { name: "go_active";
25623             signal: "elm,state,selected";
25624             source: "elm";
25625             action: STATE_SET "selected" 0.0;
25626             target: "elm.text";
25627             target: "elm.text.sub";
25628          }
25629          program { name: "go_passive";
25630             signal: "elm,state,unselected";
25631             source: "elm";
25632             action: STATE_SET "default" 0.0;
25633             target: "elm.text";
25634             target: "elm.text.sub";
25635             transition: LINEAR 0.1;
25636          }*/
25637          program { name: "go_disabled";
25638             signal: "elm,state,disabled";
25639             source: "elm";
25640             action: STATE_SET "disabled" 0.0;
25641             target: "disclip";
25642          }
25643          program { name: "go_enabled";
25644             signal: "elm,state,enabled";
25645             source: "elm";
25646             action: STATE_SET "default" 0.0;
25647             target: "disclip";
25648          }
25649       }
25650   }
25651
25652 ////////////////////////////////////////////////////////
25653 // Check that belows are used
25654    group { name: "elm/genlist/item/1icon/with_no_line/default";
25655       alias: "elm/genlist/item_odd/1icon/with_no_line/default";
25656       alias: "elm/genlist/item_compress/1icon/with_no_line/default";
25657       alias: "elm/genlist/item_compress_odd/1icon/with_no_line/default";
25658       data.item: "stacking" "above";
25659       data.item: "selectraise" "on";
25660       data.item: "contents" "elm.icon";
25661       parts {
25662          part { name: "base";
25663             type: RECT;
25664             repeat_events: 1;
25665             scale: 1;
25666             description { state: "default" 0.0;
25667                color: GENLIST_PART_DIALOGUE_GROUP_BG_COLOR;
25668             }
25669          }
25670          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25671          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25672          part { name: "elm.icon";
25673             clip_to: "disclip";
25674             type: SWALLOW;
25675             description { state: "default" 0.0;
25676                rel1 {
25677                   relative: 1.0 0.0;
25678                   to_x: "elm.padding.left";
25679                }
25680                rel2 {
25681                   relative: 0.0 1.0;
25682                   to_x: "elm.padding.right";
25683                }
25684             }
25685          }
25686          GENLIST_PART_DISCLIP
25687       }
25688       programs {
25689          // signal: elm,state,%s,active
25690          //   a "check" item named %s went active
25691          // signal: elm,state,%s,passive
25692          //   a "check" item named %s went passive
25693          // default is passive
25694          program { name: "go_disabled";
25695             signal: "elm,state,disabled";
25696             source: "elm";
25697             action: STATE_SET "disabled" 0.0;
25698             target: "disclip";
25699          }
25700          program { name: "go_enabled";
25701             signal: "elm,state,enabled";
25702             source: "elm";
25703             action: STATE_SET "default" 0.0;
25704             target: "disclip";
25705          }
25706       }
25707    }
25708    group { name: "elm/genlist/item/1icon/default";
25709       alias: "elm/genlist/item_odd/1icon/default";
25710       alias: "elm/genlist/item_compress/1icon/default";
25711       alias: "elm/genlist/item_compress_odd/1icon/default";
25712       inherit: "elm/genlist/item/1icon/with_no_line/default";
25713       parts {
25714          part { name: "bottom_line";
25715             insert_after: "elm.padding.right";
25716             type: RECT;
25717             mouse_events: 0;
25718             description { state: "default" 0.0;
25719                min: 0 1;
25720                fixed: 0 1;
25721                visible: 1;
25722                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25723                rel1 {
25724                   relative: 0.0 1.0;
25725                   offset: 0 -1;
25726                }
25727             }
25728          }
25729       }
25730    }
25731    group { name: "elm/genlist/item/1text.2/default";
25732       alias: "elm/genlist/item_odd/1text.2/default";
25733       alias: "elm/genlist/item_compress/1text.2/default";
25734       alias: "elm/genlist/item_compress_odd/1text.2/default";
25735       data.item: "stacking" "above";
25736       data.item: "selectraise" "on";
25737       data.item: "texts" "elm.text";
25738       data.item: "flips" "elm.flip.content";
25739       images {
25740          image: "00_list_bar_press_1x80.png" COMP;
25741       }
25742       parts {
25743          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
25744          GENLIST_PART_BG_IMAGE
25745          GENLIST_PART_BOTTOM_LINE
25746          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25747          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25748          part { name: "temp_center_line"; //temporary
25749             clip_to: "disclip";
25750             type: RECT;
25751             mouse_events: 0;
25752             scale: 1;
25753             description { state: "default" 0.0;
25754                rel1 {
25755                   relative: 0.0 0.5;
25756                   to: "base";
25757                }
25758                rel2 {
25759                   relative: 1.0 0.5;
25760                   to: "base";
25761                }
25762             }
25763          }
25764          part { name: "elm.text";
25765             clip_to: "disclip";
25766             type: TEXTBLOCK;
25767             mouse_events: 0;
25768             scale: 1;
25769             multiline: 0;
25770             description { state: "default" 0.0;
25771                fixed: 1 1;
25772                rel1 {
25773                   relative: 1.0 0.5;
25774                   to_x: "elm.padding.left";
25775                   to_y: "temp_center_line";
25776                }
25777                rel2 {
25778                   relative: 0.0 0.5;
25779                   to_x: "elm.padding.right";
25780                   to_y: "temp_center_line";
25781                }
25782                align: 0.0 0.5;
25783                text {
25784                   style: "genlist_style_list_main_text_unread";
25785                   min: 0 1;
25786                   align: 0.0 0.5;
25787                }
25788             }
25789             description { state: "selected" 0.0;
25790                inherit: "default" 0.0;
25791                text.style: "genlist_style_list_main_text_focus";
25792             }
25793             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
25794             GENLIST_DESCRIPTION_FLIP_ENABLED
25795          }
25796          GENLIST_PART_FLIP
25797          GENLIST_PART_DISCLIP
25798       }
25799       programs {
25800          // signal: elm,state,%s,active
25801          //   a "check" item named %s went active
25802          // signal: elm,state,%s,passive
25803          //   a "check" item named %s went passive
25804          // default is passive
25805          program { name: "go_active";
25806             signal: "elm,state,selected";
25807             source: "elm";
25808             action: STATE_SET "selected" 0.0;
25809             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
25810             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
25811          }
25812          program { name: "go_passive";
25813             signal: "elm,state,unselected";
25814             source: "elm";
25815             action: STATE_SET "default" 0.0;
25816             target: "bg_image";
25817             target: "elm.text";
25818             transition: LINEAR 0.1;
25819          }
25820          program { name: "go_disabled";
25821             signal: "elm,state,disabled";
25822             source: "elm";
25823             action: STATE_SET "disabled" 0.0;
25824             target: "disclip";
25825          }
25826          program { name: "go_enabled";
25827             signal: "elm,state,enabled";
25828             source: "elm";
25829             action: STATE_SET "default" 0.0;
25830             target: "disclip";
25831          }
25832          //GENLIST_PROGRAM_FLIP_1TEXT
25833          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
25834       }
25835    }
25836
25837 // 3.1.17
25838    group { name: "elm/genlist/item/1text.2icon.4/default";
25839       alias: "elm/genlist/item_odd/1text.2icon.4/default";
25840       alias: "elm/genlist/item_compress/1text.2icon.4/default";
25841       alias: "elm/genlist/item_compress_odd/1text.2icon.4/default";
25842       data.item: "stacking" "above";
25843       data.item: "selectraise" "on";
25844       data.item: "texts" "elm.text";
25845       data.item: "contents" "elm.icon.1 elm.icon.2";
25846       data.item: "flips" "elm.flip.content";
25847       images {
25848          image: "00_list_bar_press_1x80.png" COMP;
25849       }
25850       parts {
25851          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
25852          GENLIST_PART_BG_IMAGE
25853          GENLIST_PART_BOTTOM_LINE
25854          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25855          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25856          part { name: "elm.icon.1";
25857             clip_to: "disclip";
25858             type: SWALLOW;
25859             scale: 1;
25860             description { state: "default" 0.0;
25861                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
25862                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
25863                fixed: 1 1;
25864                rel1 {
25865                   relative: 1.0 0.0;
25866                   to_x: "elm.padding.left";
25867                }
25868                rel2.to_x: "elm.padding.left";
25869                align: 0.0 0.5;
25870             }
25871             GENLIST_DESCRIPTION_FLIP_ENABLED
25872          }
25873          part { name: "elm.padding.icon1.right";
25874             clip_to: "disclip";
25875             type: RECT;
25876             scale: 1;
25877             description { state: "default" 0.0;
25878                min: GENLIST_PADDING_16_INC 0;
25879                fixed: 1 0;
25880                rel1 {
25881                   relative: 1.0 0.0;
25882                   to_x: "elm.icon.1";
25883                }
25884                rel2.to_x: "elm.icon.1";
25885                visible: 0;
25886             }
25887          }
25888          part { name: "elm.icon.2";
25889             clip_to: "disclip";
25890             type: SWALLOW;
25891             scale: 1;
25892             description { state: "default" 0.0;
25893                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
25894                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
25895                fixed: 1 1;
25896                rel1 {
25897                   relative: 0.0 0.0;
25898                   to_x: "elm.padding.right";
25899                }
25900                rel2 {
25901                   relative: 0.0 1.0;
25902                   to_x: "elm.padding.right";
25903                }
25904                align: 1.0 0.5;
25905             }
25906             GENLIST_DESCRIPTION_FLIP_ENABLED
25907          }
25908          part { name: "elm.padding.icon2.left";
25909             clip_to: "disclip";
25910             type: RECT;
25911             scale: 1;
25912             description { state: "default" 0.0;
25913                min: GENLIST_PADDING_16_INC 0;
25914                fixed: 1 0;
25915                rel1.to_x: "elm.icon.2";
25916                rel2 {
25917                   relative: 0.0 1.0;
25918                   to_x: "elm.icon.2";
25919                }
25920                align: 1.0 0.0;
25921                visible: 0;
25922             }
25923          }
25924          part { name: "elm.text";
25925             clip_to: "disclip";
25926             type: TEXT;
25927             mouse_events: 0;
25928             scale: 1;
25929             description { state: "default" 0.0;
25930                rel1 {
25931                   relative: 1.0 0.0;
25932                   to_x: "elm.padding.icon1.right";
25933                }
25934                rel2 {
25935                   relative: 0.0 1.0;
25936                   to_x: "elm.padding.icon2.left";
25937                }
25938                align: 0.0 0.5;
25939                color: GENLIST_LIST_MAIN_TEXT_UNREAD_COLOR;
25940                text {
25941                   font: "SLP:style=Roman";
25942                   size: GENLIST_LIST_MAIN_TEXT_SIZE;
25943                   min: 0 1;
25944                   align: 0.0 0.5;
25945                   text_class: "list_item";
25946                }
25947             }
25948             description { state: "selected" 0.0;
25949                inherit: "default" 0.0;
25950                color: GENLIST_LIST_MAIN_TEXT_FOCUS_COLOR;
25951             }
25952             GENLIST_DESCRIPTION_FLIP_ENABLED
25953          }
25954          GENLIST_PART_FLIP
25955          GENLIST_PART_DISCLIP
25956       }
25957       programs {
25958          program { name: "go_active";
25959             signal: "elm,state,selected";
25960             source: "elm";
25961             action: STATE_SET "selected" 0.0;
25962             target: "bg_image";
25963             target: "elm.text";
25964             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
25965          }
25966          program { name: "go_passive";
25967             signal: "elm,state,unselected";
25968             source: "elm";
25969             action: STATE_SET "default" 0.0;
25970             target: "bg_image";
25971             target: "elm.text";
25972             transition: LINEAR 0.1;
25973          }
25974          program { name: "go_disabled";
25975             signal: "elm,state,disabled";
25976             source: "elm";
25977             action: STATE_SET "disabled" 0.0;
25978             target: "disclip";
25979          }
25980          program { name: "go_enabled";
25981             signal: "elm,state,enabled";
25982             source: "elm";
25983             action: STATE_SET "default" 0.0;
25984             target: "disclip";
25985          }
25986          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
25987          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
25988       }
25989    }
25990