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
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
|
#define ELM_OBJ_ENTRY_CLASS elm_obj_entry_class_get()
const Eo_Class *elm_obj_entry_class_get(void) EINA_CONST;
extern EAPI Eo_Op ELM_OBJ_ENTRY_BASE_ID;
enum
{
ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_PUSH,
ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_POP,
ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_PEEK,
ELM_OBJ_ENTRY_SUB_ID_SINGLE_LINE_SET,
ELM_OBJ_ENTRY_SUB_ID_SINGLE_LINE_GET,
ELM_OBJ_ENTRY_SUB_ID_PASSWORD_SET,
ELM_OBJ_ENTRY_SUB_ID_PASSWORD_GET,
ELM_OBJ_ENTRY_SUB_ID_ENTRY_APPEND,
ELM_OBJ_ENTRY_SUB_ID_IS_EMPTY,
ELM_OBJ_ENTRY_SUB_ID_TEXTBLOCK_GET,
ELM_OBJ_ENTRY_SUB_ID_CALC_FORCE,
ELM_OBJ_ENTRY_SUB_ID_SELECTION_GET,
ELM_OBJ_ENTRY_SUB_ID_SELECTION_HANDLER_DISABLED_SET,
ELM_OBJ_ENTRY_SUB_ID_SELECTION_HANDLER_DISABLED_GET,
ELM_OBJ_ENTRY_SUB_ID_ENTRY_INSERT,
ELM_OBJ_ENTRY_SUB_ID_LINE_WRAP_SET,
ELM_OBJ_ENTRY_SUB_ID_LINE_WRAP_GET,
ELM_OBJ_ENTRY_SUB_ID_EDITABLE_SET,
ELM_OBJ_ENTRY_SUB_ID_EDITABLE_GET,
ELM_OBJ_ENTRY_SUB_ID_SELECT_NONE,
ELM_OBJ_ENTRY_SUB_ID_SELECT_ALL,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_GEOMETRY_GET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_NEXT,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_PREV,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_UP,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_DOWN,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_BEGIN_SET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_END_SET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_LINE_BEGIN_SET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_LINE_END_SET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_SELECTION_BEGIN,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_SELECTION_END,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_FORMAT_GET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_VISIBLE_FORMAT_GET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_CONTENT_GET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_POS_SET,
ELM_OBJ_ENTRY_SUB_ID_CURSOR_POS_GET,
ELM_OBJ_ENTRY_SUB_ID_SELECTION_CUT,
ELM_OBJ_ENTRY_SUB_ID_SELECTION_COPY,
ELM_OBJ_ENTRY_SUB_ID_SELECTION_PASTE,
ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_CLEAR,
ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_ITEM_ADD,
ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_DISABLED_SET,
ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_DISABLED_GET,
ELM_OBJ_ENTRY_SUB_ID_ITEM_PROVIDER_APPEND,
ELM_OBJ_ENTRY_SUB_ID_ITEM_PROVIDER_PREPEND,
ELM_OBJ_ENTRY_SUB_ID_ITEM_PROVIDER_REMOVE,
ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_APPEND,
ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_PREPEND,
ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_REMOVE,
ELM_OBJ_ENTRY_SUB_ID_FILE_SET,
ELM_OBJ_ENTRY_SUB_ID_FILE_GET,
ELM_OBJ_ENTRY_SUB_ID_FILE_SAVE,
ELM_OBJ_ENTRY_SUB_ID_AUTOSAVE_SET,
ELM_OBJ_ENTRY_SUB_ID_AUTOSAVE_GET,
ELM_OBJ_ENTRY_SUB_ID_CNP_MODE_SET,
ELM_OBJ_ENTRY_SUB_ID_CNP_MODE_GET,
ELM_OBJ_ENTRY_SUB_ID_SCROLLABLE_SET,
ELM_OBJ_ENTRY_SUB_ID_SCROLLABLE_GET,
ELM_OBJ_ENTRY_SUB_ID_ICON_VISIBLE_SET,
ELM_OBJ_ENTRY_SUB_ID_END_VISIBLE_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_GET,
ELM_OBJ_ENTRY_SUB_ID_AUTOCAPITAL_TYPE_SET,
ELM_OBJ_ENTRY_SUB_ID_AUTOCAPITAL_TYPE_GET,
ELM_OBJ_ENTRY_SUB_ID_PREDICTION_ALLOW_SET,
ELM_OBJ_ENTRY_SUB_ID_PREDICTION_ALLOW_GET,
ELM_OBJ_ENTRY_SUB_ID_IMF_CONTEXT_RESET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_ENABLED_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_ENABLED_GET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_SHOW,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_HIDE,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LANGUAGE_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LANGUAGE_GET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_IMDATA_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_IMDATA_GET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_TYPE_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_TYPE_GET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_DISABLED_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_DISABLED_GET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_AUTOENABLED_SET,
ELM_OBJ_ENTRY_SUB_ID_IMF_CONTEXT_GET,
ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_PARENT_SET,
ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_PARENT_GET,
ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_STYLE_SET,
ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_STYLE_GET,
ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_END,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_VARIATION_SET,
ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_VARIATION_GET,
ELM_OBJ_ENTRY_SUB_ID_LAST
};
#define ELM_OBJ_ENTRY_ID(sub_id) (ELM_OBJ_ENTRY_BASE_ID + sub_id)
/**
* @def elm_obj_entry_text_style_user_push
* @since 1.8
*
* Push the style to the top of user style stack.
*
* @param[in] style
*
* @see elm_entry_text_style_user_push
*
* @ingroup Entry
*/
#define elm_obj_entry_text_style_user_push(style) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_PUSH), EO_TYPECHECK(const char *, style)
/**
* @def elm_obj_entry_text_style_user_pop
* @since 1.8
*
* Remove the style in the top of user style stack.
*
*
* @see elm_entry_text_style_user_pop
*
* @ingroup Entry
*/
#define elm_obj_entry_text_style_user_pop() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_POP)
/**
* @def elm_obj_entry_text_style_user_peek
* @since 1.8
*
* Retrieve the style on the top of user style stack.
*
* @param[out] ret
*
* @see elm_entry_text_style_user_peek
*
* @ingroup Entry
*/
#define elm_obj_entry_text_style_user_peek(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_PEEK), EO_TYPECHECK(const char **, ret)
/**
* @def elm_obj_entry_single_line_set
* @since 1.8
*
* Sets the entry to single line mode.
*
* @param[in] single_line
*
* @see elm_entry_single_line_set
*
* @ingroup Entry
*/
#define elm_obj_entry_single_line_set(single_line) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SINGLE_LINE_SET), EO_TYPECHECK(Eina_Bool, single_line)
/**
* @def elm_obj_entry_single_line_get
* @since 1.8
*
* Get whether the entry is set to be single line.
*
* @param[out] ret
*
* @see elm_entry_single_line_get
*
* @ingroup Entry
*/
#define elm_obj_entry_single_line_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SINGLE_LINE_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_password_set
* @since 1.8
*
* Sets the entry to password mode.
*
* @param[in] password
*
* @see elm_entry_password_set
*
* @ingroup Entry
*/
#define elm_obj_entry_password_set(password) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_PASSWORD_SET), EO_TYPECHECK(Eina_Bool, password)
/**
* @def elm_obj_entry_password_get
* @since 1.8
*
* Get whether the entry is set to password mode.
*
* @param[out] ret
*
* @see elm_entry_password_get
*
* @ingroup Entry
*/
#define elm_obj_entry_password_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_PASSWORD_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_entry_append
* @since 1.8
*
* Appends entry to the text of the entry.
*
* @param[in] entry
*
* @see elm_entry_entry_append
*
* @ingroup Entry
*/
#define elm_obj_entry_entry_append(entry) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ENTRY_APPEND), EO_TYPECHECK(const char *, entry)
/**
* @def elm_obj_entry_is_empty
* @since 1.8
*
* Get whether the entry is empty.
*
* @param[out] ret
*
* @see elm_entry_is_empty
*
* @ingroup Entry
*/
#define elm_obj_entry_is_empty(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_IS_EMPTY), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_textblock_get
* @since 1.8
*
* Returns the actual textblock object of the entry.
*
* @param[out] ret
*
* @see elm_entry_textblock_get
*
* @ingroup Entry
*/
#define elm_obj_entry_textblock_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_TEXTBLOCK_GET), EO_TYPECHECK(Evas_Object **, ret)
/**
* @def elm_obj_entry_calc_force
* @since 1.8
*
* Forces calculation of the entry size and text layouting.
*
*
* @see elm_entry_calc_force
*
* @ingroup Entry
*/
#define elm_obj_entry_calc_force() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CALC_FORCE)
/**
* @def elm_obj_entry_selection_get
* @since 1.8
*
* Get any selected text within the entry.
*
* @param[out] ret
*
* @see elm_entry_selection_get
*
* @ingroup Entry
*/
#define elm_obj_entry_selection_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECTION_GET), EO_TYPECHECK(const char **, ret)
/**
* @def elm_obj_entry_selection_handler_disabled_set
* @since 1.8
*
* This disables entry's selection handlers.
*
* @param[in] disabled
*
* @see elm_entry_selection_handler_disabled_set
*
* @ingroup Entry
*/
#define elm_obj_entry_selection_handler_disabled_set(disbaled) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECTION_HANDLER_DISABLED_SET), EO_TYPECHECK(Eina_Bool, disabled)
/**
* @def elm_obj_entry_selection_handler_disabled_get
* @since 1.8
*
* This returns whether the entry's selection handlers are disabled.
*
* @param[out] ret
*
* @see elm_entry_selection_handler_disabled_get
*
* @ingroup Entry
*/
#define elm_obj_entry_selection_handler_disabled_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECTION_HANDLER_DISABLED_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_entry_insert
* @since 1.8
*
* Inserts the given text into the entry at the current cursor position.
*
* @param[in] entry
*
* @see elm_entry_entry_insert
*
* @ingroup Entry
*/
#define elm_obj_entry_entry_insert(entry) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ENTRY_INSERT), EO_TYPECHECK(const char *, entry)
/**
* @def elm_obj_entry_line_wrap_set
* @since 1.8
*
* Set the line wrap type to use on multi-line entries.
*
* @param[in] wrap
*
* @see elm_entry_line_wrap_set
*
* @ingroup Entry
*/
#define elm_obj_entry_line_wrap_set(wrap) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_LINE_WRAP_SET), EO_TYPECHECK(Elm_Wrap_Type, wrap)
/**
* @def elm_obj_entry_line_wrap_get
* @since 1.8
*
* Get the wrap mode the entry was set to use.
*
* @param[out] ret
*
* @see elm_entry_line_wrap_get
*
* @ingroup Entry
*/
#define elm_obj_entry_line_wrap_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_LINE_WRAP_GET), EO_TYPECHECK(Elm_Wrap_Type *, ret)
/**
* @def elm_obj_entry_editable_set
* @since 1.8
*
* Sets if the entry is to be editable or not.
*
* @param[in] editable
*
* @see elm_entry_editable_set
*
* @ingroup Entry
*/
#define elm_obj_entry_editable_set(editable) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_EDITABLE_SET), EO_TYPECHECK(Eina_Bool, editable)
/**
* @def elm_obj_entry_editable_get
* @since 1.8
*
* Get whether the entry is editable or not.
*
* @param[out] ret
*
* @see elm_entry_editable_get
*
* @ingroup Entry
*/
#define elm_obj_entry_editable_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_EDITABLE_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_select_none
* @since 1.8
*
* This drops any existing text selection within the entry.
*
*
* @see elm_entry_select_none
*
* @ingroup Entry
*/
#define elm_obj_entry_select_none() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECT_NONE)
/**
* @def elm_obj_entry_select_all
* @since 1.8
*
* This selects all text within the entry.
*
*
* @see elm_entry_select_all
*
* @ingroup Entry
*/
#define elm_obj_entry_select_all() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECT_ALL)
/**
* @def elm_obj_entry_cursor_geometry_get
* @since 1.8
*
* This function returns the geometry of the cursor.
*
* @param[out] x
* @param[out] y
* @param[out] w
* @param[out] h
* @param[out] ret
*
* @see elm_entry_cursor_geometry_get
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_geometry_get(x, y, w, h, ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_GEOMETRY_GET), EO_TYPECHECK(Evas_Coord *, x), EO_TYPECHECK(Evas_Coord *, y), EO_TYPECHECK(Evas_Coord *, w), EO_TYPECHECK(Evas_Coord *, h), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cursor_next
* @since 1.8
*
* This moves the cursor one place to the right within the entry.
*
* @param[out] ret
*
* @see elm_entry_cursor_next
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_next(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_NEXT), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cursor_prev
* @since 1.8
*
* This moves the cursor one place to the left within the entry.
*
* @param[out] ret
*
* @see elm_entry_cursor_prev
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_prev(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_PREV), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cursor_up
* @since 1.8
*
* This moves the cursor one line up within the entry.
*
* @param[out] ret
*
* @see elm_entry_cursor_up
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_up(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_UP), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cursor_down
* @since 1.8
*
* This moves the cursor one line down within the entry.
*
* @param[out] ret
*
* @see elm_entry_cursor_down
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_down(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_DOWN), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cursor_begin_set
* @since 1.8
*
* This moves the cursor to the beginning of the entry.
*
*
* @see elm_entry_cursor_begin_set
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_begin_set() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_BEGIN_SET)
/**
* @def elm_obj_entry_cursor_end_set
* @since 1.8
*
* This moves the cursor to the end of the entry.
*
*
* @see elm_entry_cursor_end_set
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_end_set() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_END_SET)
/**
* @def elm_obj_entry_cursor_line_begin_set
* @since 1.8
*
* This moves the cursor to the beginning of the current line.
*
*
* @see elm_entry_cursor_line_begin_set
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_line_begin_set() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_LINE_BEGIN_SET)
/**
* @def elm_obj_entry_cursor_line_end_set
* @since 1.8
*
* This moves the cursor to the end of the current line.
*
*
* @see elm_entry_cursor_line_end_set
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_line_end_set() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_LINE_END_SET)
/**
* @def elm_obj_entry_cursor_selection_begin
* @since 1.8
*
* This begins a selection within the entry as though
*
*
* @see elm_entry_cursor_selection_begin
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_selection_begin() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_SELECTION_BEGIN)
/**
* @def elm_obj_entry_cursor_selection_end
* @since 1.8
*
* This ends a selection within the entry as though
*
*
* @see elm_entry_cursor_selection_end
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_selection_end() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_SELECTION_END)
/**
* @def elm_obj_entry_cursor_is_format_get
* @since 1.8
*
* Get whether a format node exists at the current cursor position.
*
* @param[out] ret
*
* @see elm_entry_cursor_is_format_get
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_is_format_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_FORMAT_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cursor_is_visible_format_get
* @since 1.8
*
* Get if the current cursor position holds a visible format node.
*
* @param[out] ret
*
* @see elm_entry_cursor_is_visible_format_get
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_is_visible_format_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_VISIBLE_FORMAT_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cursor_content_get
* @since 1.8
*
* Get the character pointed by the cursor at its current position.
*
* @param[out] ret
*
* @see elm_entry_cursor_content_get
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_content_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_CONTENT_GET), EO_TYPECHECK(char **, ret)
/**
* @def elm_obj_entry_cursor_pos_set
* @since 1.8
*
* Sets the cursor position in the entry to the given value
*
* @param[in] pos
*
* @see elm_entry_cursor_pos_set
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_pos_set(pos) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_POS_SET), EO_TYPECHECK(int, pos)
/**
* @def elm_obj_entry_cursor_pos_get
* @since 1.8
*
* Retrieves the current position of the cursor in the entry
*
* @param[out] ret
*
* @see elm_entry_cursor_pos_get
*
* @ingroup Entry
*/
#define elm_obj_entry_cursor_pos_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CURSOR_POS_GET), EO_TYPECHECK(int *, ret)
/**
* @def elm_obj_entry_selection_cut
* @since 1.8
*
* This executes a "cut" action on the selected text in the entry.
*
*
* @see elm_entry_selection_cut
*
* @ingroup Entry
*/
#define elm_obj_entry_selection_cut() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECTION_CUT)
/**
* @def elm_obj_entry_selection_copy
* @since 1.8
*
* This executes a "copy" action on the selected text in the entry.
*
*
* @see elm_entry_selection_copy
*
* @ingroup Entry
*/
#define elm_obj_entry_selection_copy() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECTION_COPY)
/**
* @def elm_obj_entry_selection_paste
* @since 1.8
*
* This executes a "paste" action in the entry.
*
*
* @see elm_entry_selection_paste
*
* @ingroup Entry
*/
#define elm_obj_entry_selection_paste() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SELECTION_PASTE)
/**
* @def elm_obj_entry_context_menu_clear
* @since 1.8
*
* This clears and frees the items in a entry's contextual (longpress)
*
*
* @see elm_entry_context_menu_clear
*
* @ingroup Entry
*/
#define elm_obj_entry_context_menu_clear() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_CLEAR)
/**
* @def elm_obj_entry_context_menu_item_add
* @since 1.8
*
* This adds an item to the entry's contextual menu.
*
* @param[in] label
* @param[in] icon_file
* @param[in] icon_type
* @param[in] func
* @param[in] data
*
* @see elm_entry_context_menu_item_add
*
* @ingroup Entry
*/
#define elm_obj_entry_context_menu_item_add(label, icon_file, icon_type, func, data) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_ITEM_ADD), EO_TYPECHECK(const char *, label), EO_TYPECHECK(const char *, icon_file), EO_TYPECHECK(Elm_Icon_Type, icon_type), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(const void *, data)
/**
* @def elm_obj_entry_context_menu_disabled_set
* @since 1.8
*
* This disables the entry's contextual (longpress) menu.
*
* @param[in] disabled
*
* @see elm_entry_context_menu_disabled_set
*
* @ingroup Entry
*/
#define elm_obj_entry_context_menu_disabled_set(disabled) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_DISABLED_SET), EO_TYPECHECK(Eina_Bool, disabled)
/**
* @def elm_obj_entry_context_menu_disabled_get
* @since 1.8
*
* This returns whether the entry's contextual (longpress) menu is
* disabled.
*
* @param[out] ret
*
* @see elm_entry_context_menu_disabled_get
*
* @ingroup Entry
*/
#define elm_obj_entry_context_menu_disabled_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CONTEXT_MENU_DISABLED_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_item_provider_append
* @since 1.8
*
* This appends a custom item provider to the list for that entry
*
* @param[in] func
* @param[in] data
*
* @see elm_entry_item_provider_append
*
* @ingroup Entry
*/
#define elm_obj_entry_item_provider_append(func, data) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ITEM_PROVIDER_APPEND), EO_TYPECHECK(Elm_Entry_Item_Provider_Cb, func), EO_TYPECHECK(void *, data)
/**
* @def elm_obj_entry_item_provider_prepend
* @since 1.8
*
* This prepends a custom item provider to the list for that entry
*
* @param[in] func
* @param[in] data
*
* @see elm_entry_item_provider_prepend
*
* @ingroup Entry
*/
#define elm_obj_entry_item_provider_prepend(func, data) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ITEM_PROVIDER_PREPEND), EO_TYPECHECK(Elm_Entry_Item_Provider_Cb, func), EO_TYPECHECK(void *, data)
/**
* @def elm_obj_entry_item_provider_remove
* @since 1.8
*
* This removes a custom item provider to the list for that entry
*
* @param[in] func
* @param[in] data
*
* @see elm_entry_item_provider_remove
*
* @ingroup Entry
*/
#define elm_obj_entry_item_provider_remove(func, data) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ITEM_PROVIDER_REMOVE), EO_TYPECHECK(Elm_Entry_Item_Provider_Cb, func), EO_TYPECHECK(void *, data)
/**
* @def elm_obj_entry_markup_filter_append
* @since 1.8
*
* Append a markup filter function for text inserted in the entry
*
* @param[in] func
* @param[in] data
*
* @see elm_entry_markup_filter_append
*
* @ingroup Entry
*/
#define elm_obj_entry_markup_filter_append(func, data) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_APPEND), EO_TYPECHECK(Elm_Entry_Filter_Cb, func), EO_TYPECHECK(void *, data)
/**
* @def elm_obj_entry_markup_filter_prepend
* @since 1.8
*
* Prepend a markup filter function for text inserted in the entry
*
* @param[in] func
* @param[in] data
*
* @see elm_entry_markup_filter_prepend
*
* @ingroup Entry
*/
#define elm_obj_entry_markup_filter_prepend(func, data) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_PREPEND), EO_TYPECHECK(Elm_Entry_Filter_Cb, func), EO_TYPECHECK(void *, data)
/**
* @def elm_obj_entry_markup_filter_remove
* @since 1.8
*
* Remove a markup filter from the list
*
* @param[in] func
* @param[in] data
*
* @see elm_entry_markup_filter_remove
*
* @ingroup Entry
*/
#define elm_obj_entry_markup_filter_remove(func, data) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_REMOVE), EO_TYPECHECK(Elm_Entry_Filter_Cb, func), EO_TYPECHECK(void *, data)
/**
* @def elm_obj_entry_file_set
* @since 1.8
*
* This sets the file (and implicitly loads it) for the text to display and
* then edit. All changes are written back to the file after a short delay if
* the entry object is set to autosave (which is the default).
*
* @param[in] file
* @param[in] format
* @param[out] ret
*
* @see elm_entry_file_set
*
* @ingroup Entry
*/
#define elm_obj_entry_file_set(file, format, ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_FILE_SET), EO_TYPECHECK(const char *, file), EO_TYPECHECK(Elm_Text_Format, format), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_file_get
* @since 1.8
*
* Get the file being edited by the entry.
*
* @param[out] file
* @param[out] format
*
* @see elm_entry_file_get
*
* @ingroup Entry
*/
#define elm_obj_entry_file_get(file, format) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_FILE_GET), EO_TYPECHECK(const char **, file), EO_TYPECHECK(Elm_Text_Format *, format)
/**
* @def elm_obj_entry_file_save
* @since 1.8
*
* This function writes any changes made to the file set with
* elm_entry_file_set()
*
*
* @see elm_entry_file_save
*
* @ingroup Entry
*/
#define elm_obj_entry_file_save() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_FILE_SAVE)
/**
* @def elm_obj_entry_autosave_set
* @since 1.8
*
* This sets the entry object to 'autosave' the loaded text file or not.
*
* @param[in] auto_save
*
* @see elm_entry_autosave_set
*
* @ingroup Entry
*/
#define elm_obj_entry_autosave_set(auto_save) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_AUTOSAVE_SET), EO_TYPECHECK(Eina_Bool, auto_save)
/**
* @def elm_obj_entry_autosave_get
* @since 1.8
*
* This gets the entry object's 'autosave' status.
*
* @param[out] ret
*
* @see elm_entry_autosave_get
*
* @ingroup Entry
*/
#define elm_obj_entry_autosave_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_AUTOSAVE_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_cnp_mode_set
* @since 1.8
*
* Control pasting of text and images for the widget.
*
* @param[in] cnp_mode
*
* @see elm_entry_cnp_mode_set
*
* @ingroup Entry
*/
#define elm_obj_entry_cnp_mode_set(cnp_mode) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CNP_MODE_SET), EO_TYPECHECK(Elm_Cnp_Mode, cnp_mode)
/**
* @def elm_obj_entry_cnp_mode_get
* @since 1.8
*
* Getting elm_entry text paste/drop mode.
*
* @param[out] ret
*
* @see elm_entry_cnp_mode_get
*
* @ingroup Entry
*/
#define elm_obj_entry_cnp_mode_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_CNP_MODE_GET), EO_TYPECHECK(Elm_Cnp_Mode *, ret)
/**
* @def elm_obj_entry_scrollable_set
* @since 1.8
*
* Enable or disable scrolling in entry
*
* @param[in] scroll
*
* @see elm_entry_scrollable_set
*
* @ingroup Entry
*/
#define elm_obj_entry_scrollable_set(scroll) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SCROLLABLE_SET), EO_TYPECHECK(Eina_Bool, scroll)
/**
* @def elm_obj_entry_scrollable_get
* @since 1.8
*
* Get the scrollable state of the entry
*
* @param[out] ret
*
* @see elm_entry_scrollable_get
*
* @ingroup Entry
*/
#define elm_obj_entry_scrollable_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_SCROLLABLE_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_icon_visible_set
* @since 1.8
*
* Sets the visibility of the left-side widget of the entry,
* set by elm_object_part_content_set().
*
* @param[in] setting
*
* @see elm_entry_icon_visible_set
*
* @ingroup Entry
*/
#define elm_obj_entry_icon_visible_set(setting) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ICON_VISIBLE_SET), EO_TYPECHECK(Eina_Bool, setting)
/**
* @def elm_obj_entry_end_visible_set
* @since 1.8
*
* Sets the visibility of the end widget of the entry, set by
*
* @param[in] setting
*
* @see elm_entry_end_visible_set
*
* @ingroup Entry
*/
#define elm_obj_entry_end_visible_set(setting) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_END_VISIBLE_SET), EO_TYPECHECK(Eina_Bool, setting)
/**
* @def elm_obj_entry_input_panel_layout_set
* @since 1.8
*
* Set the input panel layout of the entry
*
* @param[in] layout
*
* @see elm_entry_input_panel_layout_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_layout_set(layout) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_SET), EO_TYPECHECK(Elm_Input_Panel_Layout, layout)
/**
* @def elm_obj_entry_input_panel_layout_get
* @since 1.8
*
* Get the input panel layout of the entry
*
* @param[out] ret
*
* @see elm_entry_input_panel_layout_get
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_layout_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_GET), EO_TYPECHECK(Elm_Input_Panel_Layout *, ret)
/**
* @def elm_obj_entry_input_panel_layout_variation_set
* @since 1.8
*
* Set the input panel layout variation of the entry
*
* @param[in] layout variation
*
* @see elm_entry_input_panel_layout_variation_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_layout_variation_set(variation) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_VARIATION_SET), EO_TYPECHECK(int, variation)
/**
* @def elm_obj_entry_input_panel_layout_variation_get
* @since 1.8
*
* Get the input panel layout variation of the entry
*
* @param[out] ret
*
* @see elm_entry_input_panel_layout_variation_get
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_layout_variation_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LAYOUT_VARIATION_GET), EO_TYPECHECK(int *, ret)
/**
* @def elm_obj_entry_autocapital_type_set
* @since 1.8
*
* Set the autocapitalization type on the immodule.
*
* @param[in] autocapital_type
*
* @see elm_entry_autocapital_type_set
*
* @ingroup Entry
*/
#define elm_obj_entry_autocapital_type_set(autocapital_type) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_AUTOCAPITAL_TYPE_SET), EO_TYPECHECK(Elm_Autocapital_Type, autocapital_type)
/**
* @def elm_obj_entry_autocapital_type_get
* @since 1.8
*
* Retrieve the autocapitalization type on the immodule.
*
* @param[out] ret
*
* @see elm_entry_autocapital_type_get
*
* @ingroup Entry
*/
#define elm_obj_entry_autocapital_type_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_AUTOCAPITAL_TYPE_GET), EO_TYPECHECK(Elm_Autocapital_Type *, ret)
/**
* @def elm_obj_entry_prediction_allow_set
* @since 1.8
*
* Set whether the entry should allow to use the text prediction.
*
* @param[in] prediction
*
* @see elm_entry_prediction_allow_set
*
* @ingroup Entry
*/
#define elm_obj_entry_prediction_allow_set(prediction) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_PREDICTION_ALLOW_SET), EO_TYPECHECK(Eina_Bool, prediction)
/**
* @def elm_obj_entry_prediction_allow_get
* @since 1.8
*
* Get whether the entry should allow to use the text prediction.
*
* @param[out] ret
*
* @see elm_entry_prediction_allow_get
*
* @ingroup Entry
*/
#define elm_obj_entry_prediction_allow_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_PREDICTION_ALLOW_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_imf_context_reset
* @since 1.8
*
* Reset the input method context of the entry if needed.
*
*
* @see elm_entry_imf_context_reset
*
* @ingroup Entry
*/
#define elm_obj_entry_imf_context_reset() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_IMF_CONTEXT_RESET)
/**
* @def elm_obj_entry_input_panel_enabled_set
* @since 1.8
*
* Sets the attribute to show the input panel automatically.
*
* @param[in] enabled
*
* @see elm_entry_input_panel_enabled_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_enabled_set(enabled) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_ENABLED_SET), EO_TYPECHECK(Eina_Bool, enabled)
/**
* @def elm_obj_entry_input_panel_enabled_get
* @since 1.8
*
* Retrieve the attribute to show the input panel automatically.
*
* @param[out] ret
*
* @see elm_entry_input_panel_enabled_get
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_enabled_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_ENABLED_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_input_panel_show
* @since 1.8
*
* Show the input panel (virtual keyboard) based on the input panel property of entry such as layout, autocapital types, and so on.
*
*
* @see elm_entry_input_panel_show
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_show() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_SHOW)
/**
* @def elm_obj_entry_input_panel_hide
* @since 1.8
*
* Hide the input panel (virtual keyboard).
*
*
* @see elm_entry_input_panel_hide
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_hide() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_HIDE)
/**
* @def elm_obj_entry_input_panel_language_set
* @since 1.8
*
* Set the language mode of the input panel.
*
* @param[in] lang
*
* @see elm_entry_input_panel_language_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_language_set(lang) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LANGUAGE_SET), EO_TYPECHECK(Elm_Input_Panel_Lang, lang)
/**
* @def elm_obj_entry_input_panel_language_get
* @since 1.8
*
* Get the language mode of the input panel.
*
* @param[out] ret
*
* @see elm_entry_input_panel_language_get
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_language_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_LANGUAGE_GET), EO_TYPECHECK(Elm_Input_Panel_Lang *, ret)
/**
* @def elm_obj_entry_input_panel_imdata_set
* @since 1.8
*
* Set the input panel-specific data to deliver to the input panel.
*
* @param[in] data
* @param[in] len
*
* @see elm_entry_input_panel_imdata_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_imdata_set(data, len) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_IMDATA_SET), EO_TYPECHECK(const void *, data), EO_TYPECHECK(int, len)
/**
* @def elm_obj_entry_input_panel_imdata_get
* @since 1.8
*
* Get the specific data of the current input panel.
*
* @param[out] data
* @param[out] len
*
* @see elm_entry_input_panel_imdata_get
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_imdata_get(data, len) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_IMDATA_GET), EO_TYPECHECK(void *, data), EO_TYPECHECK(int *, len)
/**
* @def elm_obj_entry_input_panel_return_key_type_set
* @since 1.8
*
* Set the "return" key type. This type is used to set string or icon on the "return" key of the input panel.
*
* @param[in] return_key_type
*
* @see elm_entry_input_panel_return_key_type_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_return_key_type_set(return_key_type) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_TYPE_SET), EO_TYPECHECK(Elm_Input_Panel_Return_Key_Type, return_key_type)
/**
* @def elm_obj_entry_input_panel_return_key_type_get
* @since 1.8
*
* Get the "return" key type.
*
* @param[out] ret
*
* @see elm_entry_input_panel_return_key_type_get
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_return_key_type_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_TYPE_GET), EO_TYPECHECK(Elm_Input_Panel_Return_Key_Type *, ret)
/**
* @def elm_obj_entry_input_panel_return_key_disabled_set
* @since 1.8
*
* Set the return key on the input panel to be disabled.
*
* @param[in] disabled
*
* @see elm_entry_input_panel_return_key_disabled_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_return_key_disabled_set(disabled) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_DISABLED_SET), EO_TYPECHECK(Eina_Bool, disabled)
/**
* @def elm_obj_entry_input_panel_return_key_disabled_get
* @since 1.8
*
* Get whether the return key on the input panel should be disabled or not.
*
* @param[out] ret
*
* @see elm_entry_input_panel_return_key_disabled_get
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_return_key_disabled_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_DISABLED_GET), EO_TYPECHECK(Eina_Bool *, ret)
/**
* @def elm_obj_entry_input_panel_return_key_autoenabled_set
* @since 1.8
*
* Set whether the return key on the input panel is disabled automatically when entry has no text.
*
* @param[in] enabled
*
* @see elm_entry_input_panel_return_key_autoenabled_set
*
* @ingroup Entry
*/
#define elm_obj_entry_input_panel_return_key_autoenabled_set(enabled) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_INPUT_PANEL_RETURN_KEY_AUTOENABLED_SET), EO_TYPECHECK(Eina_Bool, enabled)
/**
* @def elm_obj_entry_imf_context_get
* @since 1.8
*
* Returns the input method context of the entry.
*
* @param[out] ret
*
* @see elm_entry_imf_context_get
*
* @ingroup Entry
*/
#define elm_obj_entry_imf_context_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_IMF_CONTEXT_GET), EO_TYPECHECK(void **, ret)
/**
* @def elm_obj_entry_anchor_hover_parent_set
* @since 1.8
*
* Set the parent of the hover popup
*
* @param[in] parent
*
* @see elm_entry_anchor_hover_parent_set
*
* @ingroup Entry
*/
#define elm_obj_entry_anchor_hover_parent_set(parent) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_PARENT_SET), EO_TYPECHECK(Evas_Object *, parent)
/**
* @def elm_obj_entry_anchor_hover_parent_get
* @since 1.8
*
* Get the parent of the hover popup
*
* @param[out] ret
*
* @see elm_entry_anchor_hover_parent_get
*
* @ingroup Entry
*/
#define elm_obj_entry_anchor_hover_parent_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_PARENT_GET), EO_TYPECHECK(Evas_Object **, ret)
/**
* @def elm_obj_entry_anchor_hover_style_set
* @since 1.8
*
* Set the style that the hover should use
*
* @param[in] style
*
* @see elm_entry_anchor_hover_style_set
*
* @ingroup Entry
*/
#define elm_obj_entry_anchor_hover_style_set(style) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_STYLE_SET), EO_TYPECHECK(const char *, style)
/**
* @def elm_obj_entry_anchor_hover_style_get
* @since 1.8
*
* Get the style that the hover should use
*
* @param[out] ret
*
* @see elm_entry_anchor_hover_style_get
*/
#define elm_obj_entry_anchor_hover_style_get(ret) ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_STYLE_GET), EO_TYPECHECK(const char **, ret)
/**
* @def elm_obj_entry_anchor_hover_end
* @since 1.8
*
* Ends the hover popup in the entry
*
*
* @see elm_entry_anchor_hover_end
*
* @ingroup Entry
*/
#define elm_obj_entry_anchor_hover_end() ELM_OBJ_ENTRY_ID(ELM_OBJ_ENTRY_SUB_ID_ANCHOR_HOVER_END)
|