summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_gengrid.eo
blob: e49fa0efabacdb14fc6006034fbd8eeee032059f (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
import elm_general;
import ecore_types;

enum Elm.Gengrid.Reorder_Type
{
   [[Gengrid reorder modes]]
   normal, [[Normal reorder type]]
   swap    [[Swap reorder type]]
}

class Elm.Gengrid (Elm.Layout, Elm.Interface_Scrollable,
                   Efl.Ui.Clickable, Elm.Interface.Atspi_Widget_Action,
                   Elm.Interface.Atspi.Selection)
{
   [[Elementary gengrid class]]
   legacy_prefix: elm_gengrid;
   eo_prefix: elm_obj_gengrid;
   event_prefix: elm_gengrid;
   methods {
      @property align {
         set {
            [[Set the items grid's alignment within a given gengrid widget.

              This sets the alignment of the whole grid of items of a gengrid
              within its given viewport. By default, those values are both
              0.5, meaning that the gengrid will have its items grid placed
              exactly in the middle of its viewport.

              Note: If given alignment values are out of the cited ranges,
              they'll be changed to the nearest boundary values on the valid
              ranges.
            ]]
         }
         get {
            [[Get the items grid's alignment values within a given gengrid
              widget.

              Note: Use $null pointers on the alignment values you're not
              interested in: they'll be ignored by the function.
            ]]
         }
         values {
            align_x: double; [[Alignment in the horizontal axis (0 <= align_x <= 1).]]
            align_y: double; [[Alignment in the vertical axis (0 <= align_y <= 1).]]
         }
      }
      @property filled {
         set {
            [[Set how the items grid's filled within a given gengrid widget

              This sets the fill state of the whole grid of items of a
              gengrid within its given viewport. By default, this value
              is false, meaning that if the first line of items grid's
              isn't filled, the items are centered with the alignment.
            ]]
         }
         get {
            [[Get how the items grid's filled within a given gengrid widget

              Note: Use $null pointers on the alignment values you're not
              interested in: they'll be ignored by the function.
            ]]
         }
         values {
            fill: bool; [[$true if the grid is filled, $false otherwise]]
         }
      }
      @property page_relative {
         [[Control  a given gengrid widget's scrolling page size, relative
           to its viewport size.
         ]]
         set {}
         get {}
         values {
            h_pagerel: double; [[Page relation horizontal]]
            v_pagerel: double; [[Page relation vertical]]
         }
      }
      @property multi_select {
         set {
            [[Enable or disable multi-selection in a given gengrid widget.

              Multi-selection is the ability to have more than one item
              selected, on a given gengrid, simultaneously. When it is
              enabled, a sequence of clicks on different items will make
              them all selected, progressively. A click on an already
              selected item will unselect it. If interacting via the
              keyboard, multi-selection is enabled while holding the
              "Shift" key.

              Note: By default, multi-selection is disabled on gengrids.
            ]]
         }
         get {
            [[Get whether multi-selection is enabled or disabled for a given
              gengrid widget.
            ]]
         }
         values {
            multi: bool; [[$true if multislect is enabled, $false otherwise]]
         }
      }
      @property group_item_size {
         set {
            [[Set the size for the group items of a given gengrid widget.

              A gengrid, after creation, has still no information on the size
              to give to each of its cells. So, you most probably will end up
              with squares one \@ref Fingers "finger" wide, the default
              size. Use this function to force a custom size for you group
              items, making them as big as you wish.
            ]]
         }
         get {
            [[Get the size set for the group items of a given gengrid widget.

              Note: Use $null pointers on the size values you're not
              interested in: they'll be ignored by the function.
            ]]
         }
         values {
            w: Evas.Coord; [[The group items' width.]]
            h: Evas.Coord; [[The group items' height.]]
         }
      }
      @property select_mode {
         set {
            [[Set the gengrid select mode.

              This changes item select mode in the gengrid widget.
              #ELM_OBJECT_SELECT_MODE_DEFAULT means that items will only
              call their selection func and callback when first becoming
              selected. Any further clicks will do nothing, unless you set
              always select mode. #ELM_OBJECT_SELECT_MODE_ALWAYS means that
              even if selected, every click will make the selected callbacks
              be called. #ELM_OBJECT_SELECT_MODE_NONE will turn off the
              ability to select items entirely and they will neither appear
              selected nor call selected callback functions.
            ]]
         }
         get {
            [[Get the gengrid select mode.]]
         }
         values {
            mode: Elm.Object.Select_Mode(Elm.Object.Select_Mode.max); [[The select mode.]]
         }
      }
      @property reorder_mode {
         set {
            [[Set whether a given gengrid widget is or not able have items
              reordered.

              If a gengrid is set to allow reordering, a click held for more
              than 0.5 over a given item will highlight it specially,
              signaling the gengrid has entered the reordering state. From
              that time on, the user will be able to, while still holding the
              mouse button down, move the item freely in the gengrid's
              viewport, replacing to said item to the locations it goes to.
              The replacements will be animated and, whenever the user
              releases the mouse button, the item being replaced gets a new
              definitive place in the grid.
            ]]
         }
         get {
            [[Get whether a given gengrid widget is or not able have items
              reordered.
            ]]
         }
         values {
            reorder_mode: bool; [[Use $true to turn reordering on,
                                  $false to turn it off.]]
         }
      }
      @property highlight_mode {
         [[Control whether the gengrid items' should be highlighted when
           item selected.
         ]]
         set {}
         get {}
         values {
            highlight: bool; [[$true if item will be highlighted, $false otherwise]]
         }
      }
      @property reorder_type {
         set {
            [[ Set the Gengrid reorder type
               @since 1.11
            ]]
         }
         values {
            type: Elm.Gengrid.Reorder_Type; [[ Reorder type value ]]
         }
      }
      @property item_size {
         set {
            [[Set the size for the items of a given gengrid widget.

              A gengrid, after creation, has still no information on the size
              to give to each of its cells. So, you most probably will end up
              with squares one \@ref Fingers "finger" wide, the default
              size. Use this function to force a custom size for you items,
              making them as big as you wish.
            ]]
         }
         get {
            [[Get the size set for the items of a given gengrid widget.

              Note: Use $null pointers on the size values you're not
              interested in: they'll be ignored by the function.
            ]]
         }
         values {
            w: Evas.Coord; [[The items' width.]]
            h: Evas.Coord; [[The items' height.]]
         }
      }
      @property multi_select_mode {
         set {
            [[Set the gengrid multi select mode.

              #ELM_OBJECT_MULTI_SELECT_MODE_DEFAULT means that
              select/unselect items whenever each item is clicked.
              #ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL means that
              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.

              @since 1.8
            ]]
         }
         get {
            [[Get the gengrid multi select mode.

              If getting mode fails, it returns
              #ELM_OBJECT_MULTI_SELECT_MODE_MAX.

              @since 1.8
            ]]
         }
         values {
            mode: Elm.Object.Multi_Select_Mode(Elm.Object.Multi_Select_Mode.max); [[The multi select mode.]]
         }
      }
      @property horizontal {
         set {
            [[Set the direction in which a given gengrid widget will
              expand while placing its items.

              When in "horizontal mode" ($true), items will be placed in
              columns, from top to bottom and, when the space for a column
              is filled, another one is started on the right, thus expanding
              the grid horizontally. When in "vertical mode" ($false),
              though, items will be placed in rows, from left to right
              and, when the space for a row is filled, another one is
              started below, thus expanding the grid vertically.

              Note: By default, gengrid is in vertical mode, $false.
            ]]
         }
         get {
            [[Get for what direction a given gengrid widget will expand while
              placing its items.
            ]]
         }
         values {
            horizontal: bool; [[$true to make the gengrid expand horizontally,
            $false to expand vertically.]]
         }
      }
      @property page_size {
         set {
            [[Set a given gengrid widget's scrolling page size.]]
         }
         values {
            h_pagesize: Evas.Coord; [[Page size horizontal]]
            v_pagesize: Evas.Coord; [[Page size vertical]]
         }
      }
      @property selected_item {
         get {
            [[Get the selected item in a given gengrid widget.

              This returns the selected item in $obj. If multi selection is
              enabled on $obj (See @.multi_select.set), only the first item
              in the list is selected, which might not be very useful. For
              that case, see @.selected_items.get.
            ]]
            return: Elm.Widget.Item; [[The selected item's handle or $null
                                         if none is selected at the moment
                                         (and on errors).]]
         }
      }
      @property realized_items {
         get {
            [[Get a list of realized items in gengrid.

              This returns a list of the realized items in the gengrid. The
              list contains gengrid 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 gengrid is not deleted.
            ]]
            return: free(own(list<ptr(Elm_Gen_Item)>), eina_list_free) @warn_unused; [[
                The list of realized items or $null if none are realized.
            ]]
         }
      }
      @property first_item {
         get {
            [[Get the first item in a given gengrid widget.

              This returns the first item in the $obj's internal list of
              items.
            ]]
            return: Elm.Widget.Item; [[
               The first item's handle or $null, if there are no
               items in $obj (and on errors)
            ]]
         }
      }
      @property selected_items {
         get {
            [[Get a list of selected items in a given gengrid.

              This returns a list of the selected items, in the order that
              they appear in the grid. This list is only valid as long as no
              more items are selected or unselected (or unselected implicitly
              by deletion). The list contains Gengrid item pointers as
              data, naturally.
            ]]
            return: const(list<Elm.Widget.Item>); [[
               The list of selected items or $null, if none is
               selected at the moment (and on errors).
            ]]
         }
      }
      @property last_item {
         get {
            [[Get the last item in a given gengrid widget.

              This returns the last item in the $obj's internal list of
              items.
            ]]
            return: Elm.Widget.Item; [[The last item's handle or $null
                                         if there are no  items in $obj
                                         (and on errors).]]
         }
      }
      @property wheel_disabled {
         set {
            [[Enable or disable mouse wheel to be used to scroll the gengrid.

              Mouse wheel can be used for the user to scroll up and down
              the gengrid.

              Wheel is enabled by default.
            ]]
         }
         get {
            [[Get a value whether mouse wheel is enabled or not.

              Mouse wheel can be used for the user to scroll up and down
              the gengrid.
            ]]
         }
         values {
            disabled: bool; [[Use $true to disable mouse wheel or $false
                              to enable it.]]
         }
      }
      item_insert_before {
         [[Insert an item before another in a gengrid widget.

           This inserts an item before another in the gengrid.
         ]]
         return: Elm.Widget.Item; [[A handle to the item added or $null on errors.]]
         params {
            @in itc: ptr(const(Elm.Gengrid.Item.Class)); [[The item class for the item.]]
            @in data: const(void_ptr); [[The item data.]]
            @in relative: Elm.Widget.Item; [[The item to place this new one before.]]
            @in func: Evas_Smart_Cb @optional; [[Convenience function called
                                                 when the item is selected.]]
            @in func_data: const(void_ptr) @optional; [[Data to be passed to $func.]]
         }
      }
      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 \@ref elm_gengrid_item_update.
         ]]
      }
      item_insert_after {
         [[Insert an item after another in a gengrid widget.

           This inserts an item after another in the gengrid.
         ]]
         return: Elm.Widget.Item; [[A handle to the item added or $null on error.]]
         params {
            @in itc: ptr(const(Elm.Gengrid.Item.Class)); [[The item class for the item.]]
            @in data: const(void_ptr); [[The item data.]]
            @in relative: Elm.Widget.Item; [[The item to place this new one after.]]
            @in func: Evas_Smart_Cb @optional; [[Convenience function called
                                                 when the item is selected.]]
            @in func_data: const(void_ptr) @optional; [[Data to be passed to $func.]]
         }
      }
      items_count @const {
         [[Return how many items are currently in a list

           This behavior is O(1) and includes items which may or may not
           be realized.
         ]]
         return: uint; [[Items in list]]
      }
      at_xy_item_get @const {
         [[Get the item that is at the x, y canvas coords.

           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 $xposret is not $null, the
           integer pointed to is set to a value of -1, 0 or 1, depending if
           the coordinate is on the left portion of that item (-1), on the
           middle section (0) or on the right part (1).

           If $yposret 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 gengrid.
         ]]
         return: Elm.Widget.Item; [[The item at the coordinates or $null if none.]]
         params {
            @in x: Evas.Coord; [[The input x coordinate.]]
            @in y: Evas.Coord; [[The input y coordinate.]]
            @out xposret: int; [[The position relative to the item returned here.]]
            @out yposret: int; [[The position relative to the item returned here.]]
         }
      }
      item_append {
         [[Append a new item in a given gengrid widget.

           This adds an item to the beginning of the gengrid.
         ]]
         return: Elm.Widget.Item; [[A handle to the item added or $null on errors.]]
         params {
            @in itc: ptr(const(Elm.Gengrid.Item.Class)); [[The item class for the item.]]
            @in data: const(void_ptr); [[The item data.]]
            @in func: Evas_Smart_Cb @optional; [[Convenience function called
                                                 when the item is selected.]]
            @in func_data: const(void_ptr) @optional; [[Data to be passed to $func.]]
         }
      }
      item_prepend {
         [[Prepend a new item in a given gengrid widget.

           This adds an item to the end of the gengrid.
         ]]
         return: Elm.Widget.Item; [[A handle to the item added or $null on errors.]]
         params {
            @in itc: ptr(const(Elm.Gengrid.Item.Class)); [[The item class for the item.]]
            @in data: const(void_ptr); [[The item data.]]
            @in func: Evas_Smart_Cb @optional; [[Convenience function called
                                                 when the item is selected.]]
            @in func_data: const(void_ptr) @optional; [[Data to be passed to $func.]]
         }
      }
      clear {
         [[Remove all items from a given gengrid widget.

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

           See \@ref elm_gengrid_item_del to remove just one item.
         ]]
      }
      item_sorted_insert {
         [[Insert an item in a gengrid widget using a user-defined sort
           function.

           This inserts an item in the gengrid based on user defined
           comparison function. The two arguments passed to the function
           $func are gengrid item handles to compare.
         ]]
         return: Elm.Widget.Item; [[A handle to the item added or $null on errors.]]
         params {
            @in itc: ptr(const(Elm.Gengrid.Item.Class)); [[The item class for the item.]]
            @in data: const(void_ptr); [[The item data.]]
            @in comp: Eina_Compare_Cb; [[User defined comparison function
                                         that defines the sort order based
                                         on gengrid item and its data.
                                       ]]
            @in func: Evas_Smart_Cb @optional; [[Convenience function called when the item is selected.]]
            @in func_data: const(void_ptr) @optional; [[Data to be passed to $func.]]
         }
      }
      search_by_text_item_get {
         [[Get gengrid item by given string.

           It takes pointer to the gengrid item that will be used to start
           search from it.

           This function uses globs (like "*.jpg") for searching and takes
           search flags as last parameter That is a bitfield with values
           to be ored together or 0 for no flags.

           @since 1.11
         ]]
         return: Elm.Widget.Item; [[Pointer to the gengrid item which matches
                                      search_string in case of success,
                                      otherwise $null.]]
         params {
            @in item_to_search_from: Elm.Widget.Item @optional; [[
               Pointer to item to start search from. If $null, search will
               be started from the first item of the gengrid.
            ]]
            @in part_name: string; [[Name of the TEXT part of gengrid item to search string in.]]
            @in pattern: string; [[The search pattern.]]
            @in flags: Elm.Glob.Match_Flags; [[Search flags.]]
         }
      }
      reorder_mode_start {
         [[
            Starts the reorder mode of Gengrid
            @since 1.10
         ]]
         params {
            @in tween_mode: Ecore.Pos_Map; [[ Position mappings for animation ]]
         }
      }
      reorder_mode_stop {
         [[
            Stops the reorder mode of Gengrid
            @since 1.10
         ]]
      }
   }
   implements {
      class.constructor;
      Efl.Object.constructor;
      Efl.Gfx.position { set; }
      Efl.Gfx.size { set; }
      Efl.Canvas.Group.group_add;
      Efl.Canvas.Group.group_del;
      Efl.Canvas.Group.group_member_add;
      Elm.Widget.theme_apply;
      Elm.Widget.focus_next_manager_is;
      Elm.Widget.focus_direction_manager_is;
      Elm.Widget.access;
      Elm.Widget.focus_next;
      Elm.Widget.focus_direction;
      Elm.Widget.on_focus;
      Elm.Widget.on_focus_region;
      Elm.Widget.event;
      Elm.Widget.focus_highlight_geometry_get;
      Elm.Widget.focused_item { get; }
      Elm.Widget.item_loop_enabled { get; set; }
      Elm.Widget.focus_register;
      Elm.Layout.sizing_eval;
      Elm.Interface_Scrollable.bounce_allow { set; }
      Elm.Interface_Scrollable.policy;
      Elm.Interface.Atspi_Accessible.children { get; }
      Elm.Interface.Atspi_Accessible.state_set { get; }
      Elm.Interface.Atspi_Widget_Action.elm_actions { get; }
      Elm.Interface.Atspi.Selection.selected_children_count { get; }
      Elm.Interface.Atspi.Selection.selected_child { get; }
      Elm.Interface.Atspi.Selection.selected_child_deselect;
      Elm.Interface.Atspi.Selection.child_select;
      Elm.Interface.Atspi.Selection.child_deselect;
      Elm.Interface.Atspi.Selection.is_child_selected;
      Elm.Interface.Atspi.Selection.all_children_select;
      Elm.Interface.Atspi.Selection.clear;
      Efl.Ui.Focus.Manager.register;
      Efl.Ui.Focus.Manager.unregister;
   }
   events {
      realized; [[Called when gengrid realized]]
      unrealized; [[Called when gengrid unrealized]]
      index,update; [[Called on gengrid index update]]
      scroll,page,changed; [[Called when scroll page changed]]
      edge,bottom; [[Called when bottom edge is reached]]
      edge,top; [[Called when top edge is reached]]
      edge,right; [[Called when right edge is reached]]
      edge,left; [[Called when left edge is reached]]
      item,focused; [[Called when item got focus]]
      item,unfocused; [[Called when item no longer has focus]]
      item,reorder,anim,start; [[Called when item reorder animation started]]
      item,reorder,anim,stop; [[Called when item reorder animation stopped]]
      activated; [[Called when gengrid got activated]]
      highlighted; [[Called when gengrid is highlighted]]
      unhighlighted; [[Called when gengrid is no longer highlighted]]
      released; [[Called when gengrid is released]]
   }
}