summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_entry.eo
blob: a6015a97a3255a4fd9d79d54ba9b812e0299731d (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
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
import elm_general;

type Elm_Entry_Item_Provider_Cb: __undefined_type; [[Elementary entry item provider callback type]]
type Elm_Entry_Filter_Cb: __undefined_type; [[Elementary entry filter callback type]]

class Elm.Entry (Efl.Ui.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
                 Efl.Access.Text, Efl.Access.Editable.Text, Efl.File,
                 Efl.Ui.Selectable, Efl.Ui.Scrollable, Efl.Access.Widget.Action)
{
   [[Elementary entry class]]
   legacy_prefix: elm_entry;
   eo_prefix: elm_obj_entry;
   event_prefix: elm_entry;
   methods {
      @property scrollable {
         set {
            [[Enable or disable scrolling in entry

              Normally the entry is not scrollable unless you enable it with this call.
            ]]
         }
         get {
            [[Get the scrollable state of the entry

              Normally the entry is not scrollable. This gets the scrollable state
              of the entry.
            ]]
         }
         values {
            scroll: bool; [[$true if it is to be scrollable, $false otherwise.]]
         }
      }
      @property input_panel_show_on_demand {
         set {
            [[Set the attribute to show the input panel in case of only an user's explicit Mouse Up event.
              It doesn't request to show the input panel even though it has focus.

              @since 1.9
            ]]
         }
         get {
            [[Get the attribute to show the input panel in case of only an user's explicit Mouse Up event.

              @since 1.9
            ]]
         }
         values {
            ondemand: bool; [[If $true, the input panel will be shown in case of only Mouse up event.
            (Focus event will be ignored.)
            ]]
         }
      }
      @property context_menu_disabled {
         set {
            [[This disables the entry's contextual (longpress) menu.]]
         }
         get {
            [[This returns whether the entry's contextual (longpress) menu is
              disabled.
            ]]
         }
         values {
            disabled: bool; [[If $true, the menu is disabled.]]
         }
      }
      @property cnp_mode {
         set {
            [[Control pasting of text and images for the widget.

              Normally the entry allows both text and images to be pasted.
              By setting cnp_mode to be #ELM_CNP_MODE_NO_IMAGE, this prevents images from being copy or past.
              By setting cnp_mode to be #ELM_CNP_MODE_PLAINTEXT, this remove all tags in text .

              Note: This only changes the behaviour of text.
            ]]
         }
         get {
            [[Getting elm_entry text paste/drop mode.

              Normally the entry allows both text and images to be pasted.
              This gets the copy & paste mode of the entry.
            ]]
         }
         values {
            cnp_mode: Elm.Cnp_Mode; [[One of #Elm_Cnp_Mode: #ELM_CNP_MODE_MARKUP, #ELM_CNP_MODE_NO_IMAGE, #ELM_CNP_MODE_PLAINTEXT.]]
         }
      }
      @property file_text_format {
         [[Text format used to load and save the file, which could be plain text or markup text.

           Default is $ELM_TEXT_FORMAT_PLAIN_UTF8, if you want to use
           $ELM_TEXT_FORMAT_MARKUP_UTF8 then you need to set the text format
           before calling @Efl.File.file.set.

           You could also set it before a call to @.file_save
           in order to save with the given format.
         ]]

         set {
            [[Use it before calling @Efl.File.file.set or @.file_save.]]
         }
         values {
            format: Elm.Text_Format(Elm.Text_Format.plain_utf8); [[ The file format ]]
         }
      }
      @property input_panel_language {
         set {
            [[Set the language mode of the input panel.

              This API can be used if you want to show the alphabet keyboard mode.
            ]]
         }
         get {
            [[Get the language mode of the input panel.]]
         }
         values {
            lang: Elm.Input.Panel.Lang; [[Language to be set to the input panel.]]
         }
      }
      @property selection_handler_disabled {
         set {
            [[This disabled the entry's selection handlers.]]
         }
         get {
            [[This returns whether the entry's selection handlers are disabled.]]
            legacy: null;
         }
         values {
            disabled: bool; [[If $true, the selection handlers are disabled.]]
         }
      }
      @property input_panel_layout_variation {
         set {
            [[Set the input panel layout variation of the entry

              @since 1.8
            ]]
         }
         get {
            [[Get the input panel layout variation of the entry

              @since 1.8
            ]]
         }
         values {
            variation: int; [[Layout variation type.]]
         }
      }
      @property autocapital_type {
         set {
            [[Set the autocapitalization type on the immodule.]]
         }
         get {
            [[Get the autocapitalization type on the immodule.]]
         }
         values {
            autocapital_type: Elm.Autocapital.Type; [[The type of autocapitalization.]]
         }
      }
      @property editable {
         set {
            [[Sets if the entry is to be editable or not.

              By default, entries are editable and when focused, any text input by the
              user will be inserted at the current cursor position. But calling this
              function with $editable as $false will prevent the user from
              inputting text into the entry.

              The only way to change the text of a non-editable entry is to use
              \@ref elm_object_text_set, \@ref elm_entry_entry_insert and other related
              functions.
            ]]
         }
         get {
            [[Get whether the entry is editable or not.]]
         }
         values {
            editable: bool; [[If $true, user input will be inserted in the entry,
            if not, the entry is read-only and no user input is allowed.]]
         }
      }
      @property anchor_hover_style {
         set {
            [[Set the style that the hover should use

              When creating the popup hover, entry will request that it's
              themed according to $style.

              Setting style no $null means disabling automatic hover.
            ]]
         }
         get {
            [[Get the style that the hover should use.]]
         }
         values {
            style: string @nullable; [[The style to use for the underlying hover.]]
         }
      }
      @property single_line {
         set {
            [[Sets the entry to single line mode.

              In single line mode, entries don't ever wrap when the text reaches the
              edge, and instead they keep growing horizontally. Pressing the $Enter
              key will generate an $"activate" event instead of adding a new line.

              When $single_line is $false, line wrapping takes effect again
              and pressing enter will break the text into a different line
              without generating any events.
            ]]
         }
         get {
            [[Get whether the entry is set to be single line.]]
         }
         values {
            single_line: bool; [[If $true, the text in the entry
            will be on a single line.]]
         }
      }
      @property password {
         set {
            [[Sets the entry to password mode.

              In password mode, entries are implicitly single line and the display of
              any text in them is replaced with asterisks (*).
            ]]
         }
         get {
            [[Get whether the entry is set to password mode.]]
         }
         values {
            password: bool; [[If $true, password mode is enabled.]]
         }
      }
      @property input_panel_return_key_disabled {
         set {
            [[Set the return key on the input panel to be disabled.]]
         }
         get {
            [[Get whether the return key on the input panel should be disabled or not.]]
         }
         values {
            disabled: bool; [[The state to put in in: $true for
            disabled, $false for enabled.]]
         }
      }
      @property autosave {
         set {
            [[This sets the entry object to 'autosave' the loaded text file or not.]]
         }
         get {
            [[This gets the entry object's 'autosave' status.]]
         }
         values {
            auto_save: bool; [[Autosave the loaded file or not.]]
         }
      }
      @property anchor_hover_parent {
         set {
            [[Set the parent of the hover popup

              Sets the parent object to use by the hover created by the entry
              when an anchor is clicked.
            ]]
         }
         get {
            [[Get the parent of the hover popup

              Get the object used as parent for the hover created by the entry
              widget. If no parent is set, the same entry object will be used.
            ]]
         }
         values {
            parent: Efl.Canvas.Object @nullable; [[The object to use as parent for the hover.]]
         }
      }
      @property prediction_allow {
         set {
            [[Set whether the entry should allow to use the text prediction.]]
         }
         get {
            [[Get whether the entry should allow to use the text prediction.]]
         }
         values {
            prediction: bool; [[Whether the entry should allow to use the text prediction.]]
         }
      }
      @property input_hint {
         set {
            [[Sets the input hint which allows input methods to fine-tune their behavior.]]
         }
         get {
            [[Gets the value of input hint.]]
         }
         values {
            hints: Elm.Input.Hints; [[Input hint.]]
         }
      }
      @property input_panel_layout {
         set {
            [[Set the input panel layout of the entry.]]
         }
         get {
            [[Get the input panel layout of the entry.]]
         }
         values {
            layout: Elm.Input.Panel.Layout(Elm.Input.Panel.Layout.invalid); [[Layout type.]]
         }
      }
      @property input_panel_return_key_type {
         set {
            [[Set the "return" key type. This type is used to set string or icon on the "return" key of the input panel.

              An input panel displays the string or icon associated with this type.

              Regardless of return key type, "activated" event will be generated when pressing return key in single line entry.
            ]]
         }
         get {
            [[Get the "return" key type.]]
         }
         values {
            return_key_type: Elm.Input.Panel.Return_Key.Type; [[The type of "return" key on the input panel.]]
         }
      }
      @property input_panel_enabled {
         set {
            [[Sets the attribute to show the input panel automatically.]]
         }
         get {
            [[Get the attribute to show the input panel automatically.]]
         }
         values {
            enabled: bool; [[If $true, the input panel is appeared when entry is clicked or has a focus.]]
         }
      }
      @property line_wrap {
         set {
            [[Set the line wrap type to use on multi-line entries.

              Sets the wrap type used by the entry to any of the specified in
              Elm_Wrap_Type. This tells how the text will be implicitly cut into a new
              line (without inserting a line break or paragraph separator) when it
              reaches the far edge of the widget.

              Note that this only makes sense for multi-line entries. A widget set
              to be single line will never wrap.
            ]]
         }
         get {
            [[Get the wrap mode the entry was set to use.]]
         }
         values {
            wrap: Elm.Wrap.Type; [[The wrap mode to use. See Elm_Wrap_Type for details on them.]]
         }
      }
      @property cursor_pos {
         set {
            [[Sets the cursor position in the entry to the given value

              The value in $pos is the index of the character position within the
              contents of the string as returned by @.cursor_pos.get.
            ]]
         }
         get {
            [[Get the current position of the cursor in the entry.]]
         }
         values {
            pos: int; [[The position of the cursor.]]
         }
      }
      @property icon_visible {
         set {
            [[Sets the visibility of the left-side widget of the entry,
              set by \@ref elm_object_part_content_set.]]
         }
         values {
            setting: bool; [[$true if the object should be displayed,
            $false if not.]]
         }
      }
      @property cursor_line_end {
         set {
            [[This moves the cursor to the end of the current line.]]
         }
      }
      @property select_region {
         set {
            [[This selects a region of text within the entry.

              @since 1.9
            ]]
         }
         get {
            [[Get the current position of the selection cursors in the entry.

              @since 1.18
            ]]
         }
         values {
            start: int; [[The starting position.]]
            end: int; [[The end position.]]
         }
      }
      @property input_panel_return_key_autoenabled {
         set {
            [[Set whether the return key on the input panel is disabled automatically when entry has no text.

              If $enabled is $true, The return key on input panel is disabled when the entry has no text.
              The return key on the input panel is automatically enabled when the entry has text.
              The default value is $false.
            ]]
         }
         values {
            enabled: bool; [[If $enabled is $true, the return key is automatically disabled when the entry has no text.]]
         }
      }
      @property end_visible {
         set {
            [[Sets the visibility of the end widget of the entry, set by
              \@ref elm_object_part_content_set(ent, "end", content).]]
         }
         values {
            setting: bool; [[$true if the object should be displayed,
            false if not.]]
         }
      }
      @property cursor_begin {
         set {
            [[This moves the cursor to the beginning of the entry.]]
         }
      }
      @property cursor_line_begin {
         set {
            [[This moves the cursor to the beginning of the current line.]]
         }
      }
      @property cursor_end {
         set {
            [[This moves the cursor to the end of the entry.]]
         }
      }
      @property textblock {
         get {
            [[
              Returns the actual textblock object of the entry.

              This function exposes the internal textblock object that actually
              contains and draws the text. This should be used for low-level
              manipulations that are otherwise not possible.

              Changing the textblock directly from here will not notify edje/elm to
              recalculate the textblock size automatically, so any modifications
              done to the textblock returned by this function should be followed by
              a call to \@ref elm_entry_calc_force.

              The return value is marked as const as an additional warning.
              One should not use the returned object with any of the generic evas
              functions (geometry_get/resize/move and etc), but only with the textblock
              functions; The former will either not work at all, or break the correct
              functionality.

              IMPORTANT: Many functions may change (i.e delete and create a new one)
              the internal textblock object. Do NOT cache the returned object, and try
              not to mix calls on this object with regular elm_entry calls (which may
              change the internal textblock object). This applies to all cursors
              returned from textblock calls, and all the other derivative values.
            ]]
            return: Efl.Canvas.Object; [[Textblock object]]
         }
      }
      @property cursor_geometry {
         get {
            [[This function returns the geometry of the cursor.

              It's useful if you want to draw something on the cursor (or where it is),
              or for example in the case of scrolled entry where you want to show the
              cursor.
            ]]
            return: bool; [[$true on success, $false otherwise]]
         }
         values {
            x: int; [[X coordinate]]
            y: int; [[Y coordinate]]
            w: int; [[Width]]
            h: int; [[Height]]
         }
      }
      @property imf_context {
         get {
            [[Returns the input method context of the entry.

              This function exposes the internal input method context.

              IMPORTANT: Many functions may change (i.e delete and create a new one)
              the internal input method context. Do NOT cache the returned object.
            ]]
            return: void_ptr; [[Input method context]]
         }
      }
      @property cursor_is_format {
         get {
            [[Get whether a format node exists at the current cursor position.

              A format node is anything that defines how the text is rendered. It can
              be a visible format node, such as a line break or a paragraph separator,
              or an invisible one, such as bold begin or end tag.
              This function returns whether any format node exists at the current
              cursor position.
            ]]
            return: bool; [[$true if format node exists, $false otherwise]]
         }
      }
      @property cursor_content {
         get {
            [[Get the character pointed by the cursor at its current position.

              This function returns a string with the utf8 character stored at the
              current cursor position.
              Only the text is returned, any format that may exist will not be part
              of the return value. You must free the string when done with \@ref free.
            ]]
            return: mstring @owned @warn_unused; [[Character]]
         }
      }
      @property selection {
         get {
            [[Get any selected text within the entry.

              If there's any selected text in the entry, this function returns it as
              a string in markup format. $null is returned if no selection exists or
              if an error occurred.

              The returned value points to an internal string and should not be freed
              or modified in any way. If the $entry object is deleted or its
              contents are changed, the returned pointer should be considered invalid.
            ]]
            return: string; [[Selected string]]
         }
      }
      @property cursor_is_visible_format {
         get {
            [[Get if the current cursor position holds a visible format node.]]
            return: bool; [[$true if position has a visible format, $false otherwise]]
         }
      }
      @property select_allow {
         [[Allow selection in the entry.

           @since 1.18
         ]]
         set {
         }
         get {
         }
         values {
            allow: bool; [[If $allow is true, the text selection is allowed.]]
         }
      }
      cursor_prev {
         [[This moves the cursor one place to the left within the entry.]]
         return: bool; [[$true on success, $false otherwise]]
      }
      text_style_user_pop {
         [[Remove the style in the top of user style stack.

           @since 1.7
         ]]
      }
      item_provider_prepend {
         [[This prepends a custom item provider to the list for that entry

           This prepends the given callback.]]
         params {
            @in func: Elm_Entry_Item_Provider_Cb; [[The function called to provide the item object.]]
            @in data: void_ptr @optional; [[The data passed to $func.]]
         }
      }
      input_panel_show {
         [[Show the input panel (virtual keyboard) based on the input panel property of entry such as layout, autocapital types, and so on.

           Note that input panel is shown or hidden automatically according to the focus state of entry widget.
           This API can be used in the case of manually controlling by using @.input_panel_enabled.set(en, $false).
         ]]
      }
      imf_context_reset {
         [[Reset the input method context of the entry if needed.

           This can be necessary in the case where modifying the buffer would confuse on-going input method behavior.
           This will typically cause the Input Method Context to clear the preedit state.
         ]]
      }
      calc_force {
         [[Forces calculation of the entry size and text layouting.

           This should be used after modifying the textblock object directly. See
           @.textblock.get for more information.
         ]]
      }
      anchor_hover_end {
         [[Ends the hover popup in the entry

           When an anchor is clicked, the entry widget will create a hover
           object to use as a popup with user provided content. This function
           terminates this popup, returning the entry to its normal state.
         ]]
      }
      cursor_selection_begin {
         [[This begins a selection within the entry as though
           the user were holding down the mouse button to make a selection.]]
      }
      cursor_down {
         [[This moves the cursor one line down within the entry.]]
         return: bool; [[$true on success, $false otherwise]]
      }
      file_save {
         [[This function writes any changes made to the file set with
           \@ref elm_entry_file_set.]]
      }
      selection_copy {
         [[This executes a "copy" action on the selected text in the entry.]]
      }
      text_style_user_push {
         [[Push the style to the top of user style stack.
           If there is styles in the user style stack, the properties in the top style
           of user style stack will replace the properties in current theme.
           The input style is specified in format tag='property=value' (i.e. DEFAULT='font=Sans font_size=60'hilight=' + font_weight=Bold').

           @since 1.7
         ]]
         params {
            @in style: string; [[The style user to push.]]
         }
      }
      item_provider_remove {
         [[This removes a custom item provider to the list for that entry

           This removes the given callback. See @.item_provider_append for
           more information
         ]]
         params {
            @in func: Elm_Entry_Item_Provider_Cb; [[The function called to provide the item object.]]
            @in data: void_ptr @optional; [[The data passed to $func.]]
         }
      }
      text_style_user_peek @const {
         [[Get the style on the top of user style stack.

           See also @.text_style_user_push.

           @since 1.7
         ]]
         return: string; [[Style]]
      }
      context_menu_clear {
         [[This clears and frees the items in a entry's contextual (longpress)
           menu.

           See also @.context_menu_item_add.
         ]]
      }
      cursor_up {
         [[This moves the cursor one line up within the entry.]]
         return: bool; [[$true on success, $false otherwise]]
      }
      entry_insert {
         [[Inserts the given text into the entry at the current cursor position.

           This inserts text at the cursor position as if it was typed
           by the user (note that this also allows markup which a user
           can't just "type" as it would be converted to escaped text, so this
           call can be used to insert things like emoticon items or bold push/pop
           tags, other font and color change tags etc.)

           If any selection exists, it will be replaced by the inserted text.

           The inserted text is subject to any filters set for the widget.

           See also @.markup_filter_append.
         ]]
         params {
            @in entry: string; [[The text to insert.]]
         }
      }
      input_panel_imdata_set {
         [[Set the input panel-specific data to deliver to the input panel.

           This API is used by applications to deliver specific data to the input panel.
           The data format MUST be negotiated by both application and the input panel.
           The size and format of data are defined by the input panel.
         ]]
         params {
            @in data: const(void_ptr); [[The specific data to be set to the input panel.]]
            @in len: int; [[The length of data, in bytes, to send to the input panel.]]
         }
      }
      input_panel_imdata_get @const {
         [[Get the specific data of the current input panel.]]
         params {
            @out data: void; [[The specific data to be got from the input panel.]]
            @out len: int; [[The length of data.]]
         }
      }
      selection_paste {
         [[This executes a "paste" action in the entry.]]
      }
      cursor_next {
         [[This moves the cursor one place to the right within the entry.]]
         return: bool; [[$true on success, $false otherwise]]
      }
      select_none {
         [[This drops any existing text selection within the entry.]]
      }
      input_panel_hide {
         [[Hide the input panel (virtual keyboard).

           Note that input panel is shown or hidden automatically according to the focus state of entry widget.
           This API can be used in the case of manually controlling by using @.input_panel_enabled.set(en, $false)
         ]]
      }
      select_all {
         [[This selects all text within the entry.]]
      }
      cursor_selection_end {
         [[This ends a selection within the entry as though
           the user had just released the mouse button while making a selection.]]
      }
      selection_cut {
         [[This executes a "cut" action on the selected text in the entry.]]
      }
      is_empty @const {
         [[Get whether the entry is empty.

           Empty means no text at all. If there are any markup tags, like an item
           tag for which no provider finds anything, and no text is displayed, this
           function still returns $false.
         ]]
         return: bool(true); [[$true if empty, $false otherwise]]
      }
      markup_filter_remove {
         [[Remove a markup filter from the list

           Removes the given callback from the filter list. See
           @.markup_filter_append for more information.
         ]]
         params {
            @in func: Elm_Entry_Filter_Cb; [[The filter function to remove.]]
            @in data: void_ptr @optional; [[The user data passed when adding the function.]]
         }
      }
      item_provider_append {
         [[This appends a custom item provider to the list for that entry

           This appends the given callback. The list is walked from beginning to end
           with each function called given the item href string in the text. If the
           function returns an object handle other than $null (it should create an
           object to do this), then this object is used to replace that item. If
           not the next provider is called until one provides an item object, or the
           default provider in entry does.

           See also \@ref entry-items.
         ]]
         params {
            @in func: Elm_Entry_Item_Provider_Cb; [[The function called to provide the item object.]]
            @in data: void_ptr @optional; [[The data passed to $func.]]
         }
      }
      markup_filter_append {
         [[Append a markup filter function for text inserted in the entry

           Append the given callback to the list. This functions will be called
           whenever any text is inserted into the entry, with the text to be inserted
           as a parameter. The type of given text is always markup.
           The callback function is free to alter the text in any way it wants, but
           it must remember to free the given pointer and update it.
           If the new text is to be discarded, the function can free it and set its
           text parameter to $null. This will also prevent any following filters from
           being called.
         ]]
         params {
            @in func: Elm_Entry_Filter_Cb; [[The function to use as text filter.]]
            @in data: void_ptr @optional; [[User data to pass to $func.]]
         }
      }
      entry_append {
         [[Appends $str to the text of the entry.

           Adds the text in $str to the end of any text already present in the
           widget.

           The appended text is subject to any filters set for the widget.

           See also @.markup_filter_append.
         ]]
         params {
            @in str: string; [[The text to be appended.]]
         }
      }
      context_menu_item_add {
         [[This adds an item to the entry's contextual menu.

           A longpress on an entry will make the contextual menu show up, if this
           hasn't been disabled with @.context_menu_disabled.set.
           By default, this menu provides a few options like enabling selection mode,
           which is useful on embedded devices that need to be explicit about it,
           and when a selection exists it also shows the copy and cut actions.

           With this function, developers can add other options to this menu to
           perform any action they deem necessary.
         ]]
         params {
            @in label: string @optional; [[The item's text label.]]
            @in icon_file: string @optional; [[The item's icon file.]]
            @in icon_type: Elm.Icon.Type; [[The item's icon type.]]
            @in func: Evas_Smart_Cb @optional; [[The callback to execute when the item is clicked.]]
            @in data: const(void_ptr) @optional; [[The data to associate with the item for related functions.]]
         }
      }
      markup_filter_prepend {
         [[Prepend a markup filter function for text inserted in the entry

           Prepend the given callback to the list.]]
         params {
            @in func: Elm_Entry_Filter_Cb; [[The function to use as text filter.]]
            @in data: void_ptr @optional; [[User data to pass to $func.]]
         }
      }
      prediction_hint_set {
         [[Sets the prediction hint to use an intelligent reply suggestion service.

           @since 1.20
         ]]
         params {
            prediction_hint: string; [[The prediction hint text.]]
         }
      }
   }
   implements {
      class.constructor;
      Efl.Object.constructor;
      Efl.Gfx.visible { set; }
      Efl.Gfx.position { set; }
      Efl.Gfx.size { set; }
      Efl.Canvas.Group.group_member_add;
      Efl.Layout.Signal.signal_callback_add;
      Efl.Layout.Signal.signal_callback_del;
      Efl.Layout.Signal.signal_emit;
      Elm.Widget.on_access_activate;
      Elm.Widget.theme_apply;
      Elm.Widget.on_focus_update;
      Elm.Widget.interest_region { get; }
      Elm.Widget.on_disabled_update;
      Elm.Widget.widget_sub_object_del;
      Elm.Interface_Scrollable.policy { set; }
      Elm.Interface_Scrollable.bounce_allow { set; }
      Efl.Access.state_set { get; }
      Efl.Access.name { get; }
      Efl.Access.Text.text { get; }
      Efl.Access.Text.string { get; }
      Efl.Access.Text.attribute { get; }
      Efl.Access.Text.attributes { get; }
      Efl.Access.Text.default_attributes { get; }
      Efl.Access.Text.caret_offset { get; set; }
      Efl.Access.Text.character { get; }
      Efl.Access.Text.character_extents { get; }
      Efl.Access.Text.character_count { get; }
      Efl.Access.Text.offset_at_point { get; }
      Efl.Access.Text.bounded_ranges { get; }
      Efl.Access.Text.range_extents { get; }
      Efl.Access.Text.selection { get; set; }
      Efl.Access.Text.selections_count { get; }
      Efl.Access.Text.selection_add;
      Efl.Access.Text.selection_remove;
      Efl.Access.Editable.Text.content { set; }
      Efl.Access.Editable.Text.insert;
      Efl.Access.Editable.Text.copy;
      Efl.Access.Editable.Text.cut;
      Efl.Access.Editable.Text.delete;
      Efl.Access.Editable.Text.paste;
      Efl.Access.Widget.Action.elm_actions { get; }
      Efl.File.file { get; set; }
      Efl.Part.part;
   }
   events {
      activated; [[Called when entry got activated]]
      changed; [[Called when entry changed]]
      changed,user; [[Called when the object changed due to user interaction]]
      validate; [[Called when validating]]
      context,open; [[Called when context menu was opened]]
      anchor,clicked; [[Called when anchor was clicked]]
      rejected; [[Called when entry was rejected]]
      maxlength,reached; [[Called when maximum entry length has been reached]]
      preedit,changed; [[Called when entry preedit changed]]
      press; [[Called when entry pressed]]
      redo,request; [[Called when redo was requested]]
      undo,request; [[Called when undo was requested]]
      text,set,done; [[Called when text set finished]]
      aborted; [[Called when entry was aborted]]
      anchor,down; [[Called on anchor down]]
      anchor,hover,opened; [[Called when hover opened]]
      anchor,in; [[Called on anchor in]]
      anchor,out; [[Called on anchor out]]
      anchor,up; [[called on anchor up]]
      cursor,changed; [[Called on cursor changed]]
      cursor,changed,manual; [[Called on manual cursor change]]
   }
}