summaryrefslogtreecommitdiff
path: root/src/lib/elm_genlist.eo
blob: 8e11e9f3050e123a79eab06d64f8487fb8d43d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface)
{
   eo_prefix: elm_obj_genlist;
   properties {
      homogeneous {
         set {
            /*@
            Enable/disable homogeneous mode.

            This will enable the homogeneous mode where items are of the same
            height and width so that genlist may do the lazy-loading at its
            maximum (which increases the performance for scrolling the list).
            In the normal mode, genlist will pre-calculate all the items' sizes even
            though they are not in use. So items' callbacks are called many times than
            expected. But homogeneous mode will skip the item size pre-calculation
            process so items' callbacks are called only when the item is needed.

            @note This also works well with group index.

            @see elm_genlist_mode_set()
            @see elm_genlist_homogeneous_get()

            @ingroup Genlist */
         }
         get {
            /*@
            Get whether the homogeneous mode is enabled.

            @return Assume the items within the genlist are of the same height
            and width (EINA_TRUE = on, EINA_FALSE = off)

            @see elm_genlist_homogeneous_set()

            @ingroup Genlist */
         }
         values {
            Eina_Bool homogeneous; /*@ Assume the items within the genlist are of the
            same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c
            EINA_FALSE. */
         }
      }
      select_mode {
         set {
            /*@
            Set the genlist select mode.

            elm_genlist_select_mode_set() changes item select mode in the genlist widget.
            - ELM_OBJECT_SELECT_MODE_DEFAULT : Items will call their selection func and
            callback once when first becoming selected. Any further clicks will
            do nothing, unless you set always select mode.
            - ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
            every click will make the selected callbacks be called.
            - ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select items
            entirely and they will neither appear selected nor call selected
            callback functions.

            @see elm_genlist_select_mode_get()

            @ingroup Genlist */
         }
         get {
            /*@
            Get the genlist select mode.

            @return The select mode
            (If getting mode is failed, it returns ELM_OBJECT_SELECT_MODE_MAX)

            @see elm_genlist_select_mode_set()

            @ingroup Genlist */
         }
         values {
            Elm_Object_Select_Mode mode; /*@ The select mode */
         }
      }
      focus_on_selection {
         set {
            /*@
            Set focus upon items selection mode

            When enabled, every selection of an item inside the genlist will automatically set focus to
            its first focusable widget from the left. This is true of course if the selection was made by
            clicking an unfocusable area in an item or selecting it with a key movement. Clicking on a
            focusable widget inside an item will couse this particular item to get focus as usual.

            @ingroup Genlist */
         }
         get {
            /*@
            Get whether focus upon item's selection mode is enabled.

            @return The tree effect status
            (EINA_TRUE = enabled, EINA_FALSE = disabled)

            @ingroup Genlist */
         }
         values {
            Eina_Bool enabled; /*@ The tree effect status
            (EINA_TRUE = enabled, EINA_FALSE = disabled) */
         }
      }
      longpress_timeout {
         set {
            /*@
            Set the timeout in seconds for the longpress event.

            This option will change how long it takes to send an event "longpressed"
            after the mouse down signal is sent to the list. If this event occurs, no
            "clicked" event will be sent.

            @warning If you set the longpress timeout value with this API, your genlist
            will not be affected by the longpress value of elementary config value
            later.

            @see elm_genlist_longpress_timeout_set()

            @ingroup Genlist */
         }
         get {
            /*@
            Get the timeout in seconds for the longpress event.

            @return timeout in seconds

            @see elm_genlist_longpress_timeout_get()

            @ingroup Genlist */
         }
         values {
            double timeout; /*@ timeout in seconds. Default is elm config value(1.0) */
         }
      }
      multi_select {
         set {
            /*@
            Enable or disable multi-selection in the genlist

            This enables (@c EINA_TRUE) or disables (@c EINA_FALSE) multi-selection in
            the list. This allows more than 1 item to be selected. To retrieve the list
            of selected items, use elm_genlist_selected_items_get().

            @see elm_genlist_selected_items_get()
            @see elm_genlist_multi_select_get()

            @ingroup Genlist */
         }
         get {
            /*@
            Get if multi-selection in genlist is enabled or disabled.

            @return Multi-select enabled/disabled
            (@c EINA_TRUE = enabled/@c EINA_FALSE = disabled). Default is @c EINA_FALSE.

            @see elm_genlist_multi_select_set()

            @ingroup Genlist */
         }
         values {
            Eina_Bool multi; /*@ Multi-select enable/disable. Default is disabled. */
         }
      }
      reorder_mode {
         set {
            /*@
            Set reorder mode

            After turning on the reorder mode, longpress on normal item will trigger
            reordering of the item. You can move the item up and down. However, reorder
            does not work with group item.

            @ingroup Genlist */
         }
         get {
            /*@
            Get the reorder mode

            @return The reorder mode
            (EINA_TRUE = on, EINA_FALSE = off)

            @ingroup Genlist */
         }
         values {
            Eina_Bool reorder_mode; /*@ The reorder mode
            (EINA_TRUE = on, EINA_FALSE = off) */
         }
      }
      decorate_mode {
         set {
            /*@
            Set Genlist decorate mode

            This sets Genlist decorate mode to all items.

            @ingroup Genlist */
         }
         get {
            /*@
            Get Genlist decorate mode

            @return The decorate mode status
            (EINA_TRUE = decorate mode, EINA_FALSE = normal mode

            @ingroup Genlist */
         }
         values {
            Eina_Bool decorated; /*@ The decorate mode status
            (EINA_TRUE = decorate mode, EINA_FALSE = normal mode */
         }
      }
      multi_select_mode {
         set {
            /*@
            Set the genlist multi select mode.

            - ELM_OBJECT_MULTI_SELECT_MODE_DEFAULT : select/unselect items whenever each
            item is clicked.
            - ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL : Only one item will be selected
            although multi-selection is enabled, if clicked without pressing control
            key. This mode is only available with multi-selection.

            @see elm_genlist_multi_select_set()
            @see elm_genlist_multi_select_mode_get()

            @ingroup Genlist
            @since 1.8 */
         }
         get {
            /*@
            Get the genlist multi select mode.

            @return The multi select mode
            (If getting mode is failed, it returns ELM_OBJECT_MULTI_SELECT_MODE_MAX)

            @see elm_genlist_multi_select_set()
            @see elm_genlist_multi_select_mode_set()

            @ingroup Genlist
            @since 1.8 */
         }
         values {
            Elm_Object_Multi_Select_Mode mode; /*@ The multi select mode */
         }
      }
      block_count {
         set {
            /*@
            Set the maximum number of items within an item block

            This will configure the block count to tune to the target with particular
            performance matrix.

            A block of objects will be used to reduce the number of operations due to
            many objects in the screen. It can determine the visibility, or if the
            object has changed, it theme needs to be updated, etc. doing this kind of
            calculation to the entire block, instead of per object.

            The default value for the block count is enough for most lists, so unless
            you know you will have a lot of objects visible in the screen at the same
            time, don't try to change this.

            @see elm_genlist_block_count_get()
            @see @ref Genlist_Implementation

            @ingroup Genlist */
         }
         get {
            /*@
            Get the maximum number of items within an item block

            @return Maximum number of items within an item block

            @see elm_genlist_block_count_set()

            @ingroup Genlist */
         }
         values {
            int count; /*@ Maximum number of items within an item block. Default is 32. */
         }
      }
      tree_effect_enabled {
         set {
            /*@
            Set Genlist tree effect

            @ingroup Genlist */
         }
         get {
            /*@
            Get Genlist tree effect

            @return The tree effect status
            (EINA_TRUE = enabled, EINA_FALSE = disabled

            @ingroup Genlist */
         }
         values {
            Eina_Bool enabled; /*@ The tree effect status
            (EINA_TRUE = enabled, EINA_FALSE = disabled */
         }
      }
      highlight_mode {
         set {
            /*@
            Set whether the genlist items should be highlighted on item selection.

            This will turn on/off the highlight effect on item selection. The selected
            and clicked callback functions will still be called.

            Highlight is enabled by default.

            @see elm_genlist_highlight_mode_get().

            @ingroup Genlist */
         }
         get {
            /*@
            Get whether the genlist items' should be highlighted when item selected.

            @return @c EINA_TRUE means items can be highlighted. @c EINA_FALSE indicates
            they can't. If @p obj is @c NULL, @c EINA_FALSE is returned.

            @see elm_genlist_highlight_mode_set() for details.

            @ingroup Genlist */
         }
         values {
            Eina_Bool highlight; /*@ @c EINA_TRUE to enable highlighting or @c EINA_FALSE to
            disable it. */
         }
      }
      mode {
         set {
            /*@
            This sets the horizontal stretching mode.

            This sets the mode used for sizing items horizontally. Valid modes
            are #ELM_LIST_LIMIT, #ELM_LIST_SCROLL, and #ELM_LIST_COMPRESS. The default is
            ELM_LIST_SCROLL. This mode means that if items are too wide to fit,
            the scroller will scroll horizontally. Otherwise items are expanded
            to fill the width of the viewport of the scroller. If it is
            ELM_LIST_LIMIT, items will be expanded to the viewport width and
            limited to that size. If it is ELM_LIST_COMPRESS, the item width will be
            fixed (restricted to a minimum of) to the list width when calculating its
            size in order to allow the height to be calculated based on it. This allows,
            for instance, text block to wrap lines if the Edje part is configured with
            "text.min: 0 1".
            @note ELM_LIST_COMPRESS will make list resize slower as it will have to
            recalculate every item height again whenever the list width
            changes!
            @note Homogeneous mode is for that all items in the genlist same
            width/height. With ELM_LIST_COMPRESS, it makes genlist items to fast
            initializing. However there's no sub-objects in genlist which can be
            on the flying resizable (such as TEXTBLOCK). If then, some dynamic
            resizable objects in genlist would not diplayed properly.

            @see elm_genlist_mode_get()

            @ingroup Genlist */
         }
         get {
            /*@
            Get the horizontal stretching mode.

            @return The mode to use
            (#ELM_LIST_LIMIT, #ELM_LIST_SCROLL)

            @see elm_genlist_mode_set()

            @ingroup Genlist */
         }
         values {
            Elm_List_Mode mode; /*@ The mode to use (one of #ELM_LIST_SCROLL or #ELM_LIST_LIMIT). */
         }
      }
      decorated_item {
         get {
            /*@
            Get active genlist mode item

            @return The active item for that current mode. Or @c NULL if no item is
            activated with any mode.

            This function returns the item that was activated with a mode, by the
            function elm_genlist_item_decorate_mode_set().

            @see elm_genlist_item_decorate_mode_set()
            @see elm_genlist_mode_get()

            @ingroup Genlist */
            return Elm_Object_Item *;
         }
      }
      selected_item {
         get {
            /*@
            Get the selected item in the genlist.

            @return The selected item, or NULL if none is selected.

            This gets the selected item in the list (if multi-selection is enabled, only
            the item that was first selected in the list is returned - which is not very
            useful, so see elm_genlist_selected_items_get() for when multi-selection is
            used).

            If no item is selected, NULL is returned.

            @see elm_genlist_selected_items_get()

            @ingroup Genlist */
            return Elm_Object_Item *;
         }
      }
      first_item {
         get {
            /*@
            Get the first item in the genlist

            This returns the first item in the list.

            @return The first item, or NULL if none

            @ingroup Genlist */
            return Elm_Object_Item *;
         }
      }
      realized_items {
         get {
            /*@
            Get a list of realized items in genlist

            @return The list of realized items, nor NULL if none are realized.

            This returns a list of the realized items in the genlist. The list
            contains genlist item pointers. The list must be freed by the
            caller when done with eina_list_free(). The item pointers in the
            list are only valid so long as those items are not deleted or the
            genlist is not deleted.

            @see elm_genlist_realized_items_update()

            @ingroup Genlist */
            return Eina_List *;
         }
      }
      selected_items {
         get {
            /*@
            Get a list of selected items in the genlist.

            @return The list of selected items, or NULL if none are selected.

            It returns a list of the selected items. This list pointer is only valid so
            long as the selection doesn't change (no items are selected or unselected, or
            unselected implicitly by deletion). The list contains genlist items
            pointers. The order of the items in this list is the order which they were
            selected, i.e. the first item in this list is the first item that was
            selected, and so on.

            @note If not in multi-select mode, consider using function
            elm_genlist_selected_item_get() instead.

            @see elm_genlist_multi_select_set()
            @see elm_genlist_selected_item_get()

            @ingroup Genlist */
            return const Eina_List *;
         }
      }
      last_item {
         get {
            /*@
            Get the last item in the genlist

            This returns the last item in the list.

            @return The last item, or NULL if none

            @ingroup Genlist */
            return Elm_Object_Item *;
         }
      }
   }
   methods {
      item_insert_before {
         /*@
         Insert an item before another in a genlist widget

         @return A handle to the item added or @c NULL if not possible

         This inserts an item before another in the list. It will be in the
         same tree level or group as the item it is inserted before.

         @see elm_genlist_item_append()
         @see elm_genlist_item_prepend()
         @see elm_genlist_item_insert_after()
         @see elm_object_item_del()

         @ingroup Genlist */

         return Elm_Object_Item *;
         params {
            @in const Elm_Genlist_Item_Class *itc; /*@ The item class for the item */
            @in const void *data; /*@ The item data */
            @in Elm_Object_Item *parent; /*@ The parent item, or NULL if none */
            @in Elm_Object_Item *before_it; /*@ The item to place this new one before. */
            @in Elm_Genlist_Item_Type type; /*@ Item type */
            @in Evas_Smart_Cb func; /*@ Convenience function called when the item is selected */
            @in const void *func_data; /*@ Data passed to @p func above. */
         }
      }
      realized_items_update {
         /*@
         Update the contents of all realized items.

         This updates all realized items by calling all the item class functions again
         to get the contents, texts and states. Use this when the original
         item data has changed and the changes are desired to be reflected.

         To update just one item, use elm_genlist_item_update().

         @see elm_genlist_realized_items_get()
         @see elm_genlist_item_update()

         @ingroup Genlist */

      }
      item_insert_after {
         /*@
         Insert an item after another in a genlist widget

         @return A handle to the item added or @c NULL if not possible

         This inserts an item after another in the list. It will be in the
         same tree level or group as the item it is inserted after.

         @see elm_genlist_item_append()
         @see elm_genlist_item_prepend()
         @see elm_genlist_item_insert_before()
         @see elm_object_item_del()

         @ingroup Genlist */

         return Elm_Object_Item *;
         params {
            @in const Elm_Genlist_Item_Class *itc; /*@ The item class for the item */
            @in const void *data; /*@ The item data */
            @in Elm_Object_Item *parent; /*@ The parent item, or NULL if none */
            @in Elm_Object_Item *after_it; /*@ The item to place this new one after. */
            @in Elm_Genlist_Item_Type type; /*@ Item type */
            @in Evas_Smart_Cb func; /*@ Convenience function called when the item is selected */
            @in const void *func_data; /*@ Data passed to @p func above. */
         }
      }
      at_xy_item_get {
         /*@
         Get the item that is at the x, y canvas coords.

         @return The item at the coordinates or NULL if none

         This returns the item at the given coordinates (which are canvas
         relative, not object-relative). If an item is at that coordinate,
         that item handle is returned, and if @p posret is not NULL, the
         integer pointed to is set to a value of -1, 0 or 1, depending if
         the coordinate is on the upper portion of that item (-1), on the
         middle section (0) or on the lower part (1). If NULL is returned as
         an item (no item found there), then posret may indicate -1 or 1
         based if the coordinate is above or below all items respectively in
         the genlist.

         @ingroup Genlist */

         const;
         return Elm_Object_Item *;
         params {
            @in Evas_Coord x; /*@ The input x coordinate */
            @in Evas_Coord y; /*@ The input y coordinate */
            @out int posret; /*@ The position relative to the item returned here */
         }
      }
      items_count {
         /*@
         Return how many items are currently in a list

         @return The total number of list items in the list

         This behavior is O(1) and includes items which may or may not be realized.

         @ingroup Genlist */

         const;
         return unsigned int;
      }
      item_prepend {
         /*@
         Prepend a new item in a given genlist widget.

         @return A handle to the item added or NULL if not possible

         This adds an item to the beginning of the list or beginning of the
         children of the parent if given.

         @see elm_genlist_item_append()
         @see elm_genlist_item_insert_before()
         @see elm_genlist_item_insert_after()
         @see elm_object_item_del()

         @ingroup Genlist */

         return Elm_Object_Item *;
         params {
            @in const Elm_Genlist_Item_Class *itc; /*@ The item class for the item */
            @in const void *data; /*@ The item data */
            @in Elm_Object_Item *parent; /*@ The parent item, or NULL if none */
            @in Elm_Genlist_Item_Type type; /*@ Item type */
            @in Evas_Smart_Cb func; /*@ Convenience function called when the item is selected */
            @in const void *func_data; /*@ Data passed to @p func above. */
         }
      }
      clear {
         /*@
         Remove all items from a given genlist widget.

         This removes (and deletes) all items in @p obj, leaving it empty.

         @see elm_object_item_del(), to remove just one item.

         @ingroup Genlist */

      }
      item_append {
         /*@
         Append a new item in a given genlist widget.

         @return A handle to the item added or @c NULL if not possible

         This adds the given item to the end of the list or the end of
         the children list if the @p parent is given.

         @see elm_genlist_item_prepend()
         @see elm_genlist_item_insert_before()
         @see elm_genlist_item_insert_after()
         @see elm_object_item_del()

         @ingroup Genlist */

         return Elm_Object_Item *;
         params {
            @in const Elm_Genlist_Item_Class *itc; /*@ The item class for the item */
            @in const void *data; /*@ The item data */
            @in Elm_Object_Item *parent; /*@ The parent item, or NULL if none */
            @in Elm_Genlist_Item_Type type; /*@ Item type */
            @in Evas_Smart_Cb func; /*@ Convenience function called when the item is selected */
            @in const void *func_data; /*@ Data passed to @p func above. */
         }
      }
      item_sorted_insert {
         /*@
         Insert a new item into the sorted genlist object

         @return A handle to the item added or NULL if not possible

         This inserts an item in the genlist based on user defined comparison
         function. The two arguments passed to the function @p func are genlist item
         handles to compare.

         @see elm_genlist_item_append()
         @see elm_genlist_item_prepend()
         @see elm_genlist_item_insert_after()
         @see elm_object_item_del()

         @ingroup Genlist */

         return Elm_Object_Item *;
         params {
            @in const Elm_Genlist_Item_Class *itc; /*@ The item class for the item */
            @in const void *data; /*@ The item data */
            @in Elm_Object_Item *parent; /*@ The parent item, or NULL if none */
            @in Elm_Genlist_Item_Type type; /*@ Item type */
            @in Eina_Compare_Cb comp; /*@ The function called for the sort */
            @in Evas_Smart_Cb func; /*@ Convenience function called when item selected */
            @in const void *func_data; /*@ Data passed to @p func above. */
         }
      }
      search_by_text_item_get {
         /*@
         Get genlist item by given string.

         @return Pointer to the genlist item which matches search_string in case of success, otherwise returns NULL.

         This function takes pointer to the function that returns
         comparison string for item (it could be the same function as used for setting text for labels).
         Also it takes pointer to the genlist item that will be used to start search from it.

         This function uses fnmatch() for searching and takes it's seatcing flags as last parameter.
         The list of available flags:
         <dl>
            <dt>FNM_NOESCAPE</dt>
            <dd>If this flag is set, treat backslash as an ordinary character, instead of an escape character.</dd>
            <dt>FNM_PATHNAME</dt>
            <dd>If this flag is set, match a slash in string only with a slash in pattern and not by an asterisk (*)
                or a question mark (?) metacharacter, nor by a bracket expression ([]) containing a slash.</dd>
            <dt>FNM_PERIOD</dt>
            <dd>If this flag is set, a leading period in string has to be matched exactly by a period in pattern.
                A period is considered to be leading if it is the first character in string, or if both
                FNM_PATHNAME is set and the period immediately follows a slash.</dd>
            <dt>FNM_FILE_NAME</dt>
            <dd>This is a GNU synonym for FNM_PATHNAME.</dd>
            <dt>FNM_LEADING_DIR</dt>
            <dd>If this flag (a GNU extension) is set, the pattern is considered to be matched if it matches an
                initial segment of string which is followed by a slash. This flag is mainly for the internal
                use of glibc and is only implemented in certain cases.</dd>
            <dt>FNM_CASEFOLD</dt>
            <dd>If this flag (a GNU extension) is set, the pattern is matched case-insensitively.</dd>
         </dl>
         For more details see <a href=http://man7.org/linux/man-pages/man3/fnmatch.3.html>Linux Programmer's Manual. FNMATCH()</a>

         @ingroup Genlist
         @since 1.10 */

         return Elm_Object_Item *;
         params {
            @in Elm_Object_Item * item_to_search_from; /*@ Pointer to item to start search from. If NULL search will be started from the first item of the genlist. */
            @in Elm_Gen_Item_Text_Get_Cb _text_get; /*@ Pointer to Elm_Gen_Item_Text_Get_Cb function to get text for comparison. */
            @in const char * part_name; /*@ Name of the TEXT part of genlist item to search string in. */
            @in const char * pattern; /*@ The search pattern. */
            @in int flags; /*@ fnmatch search flags */
         }
      }
   }
   implements {
      class.constructor;
      Eo.Base.constructor;
      Evas.Object_Smart.member_add;
      Evas.Object_Smart.move;
      Evas.Object_Smart.add;
      Evas.Object_Smart.del;
      Evas.Object_Smart.resize;
      Elm_Widget.theme_apply;
      Elm_Widget.focus_next_manager_is;
      Elm_Widget.sub_object_add;
      Elm_Widget.access;
      Elm_Widget.focus_highlight_geometry_get;
      Elm_Widget.focus_next;
      Elm_Widget.on_focus;
      Elm_Widget.focus_direction_manager_is;
      Elm_Widget.sub_object_del;
      Elm_Widget.event;
      Elm_Widget.focused_item.get;
      Elm_Widget.item_loop_enabled.set;
      Elm_Widget.item_loop_enabled.get;
      Elm_Layout.sub_object_add_enable;
      Elm_Layout.sizing_eval;
      Elm_Interface_Scrollable.bounce_allow;
      Elm_Interface_Scrollable.policy;
   }
   events {
      language,changed;
      access,changed;
      focused;
      unfocused;
      item,focused;
      item,unfocused;
   }

}