arkui_sys/native_gesture/
native_gesture_ffi.rs

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
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
// automatically generated by rust-bindgen 0.71.1

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
use crate::native_type::*;
use crate::ui_input_event::ArkUI_UIInputEvent;

#[repr(C)]
pub struct ArkUI_GestureRecognizer {
    _unused: [u8; 0],
}
#[repr(C)]
pub struct ArkUI_GestureInterruptInfo {
    _unused: [u8; 0],
}
#[repr(C)]
pub struct ArkUI_GestureEvent {
    _unused: [u8; 0],
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureEventActionType {
    /// Triggered.
    pub const GESTURE_EVENT_ACTION_ACCEPT: ArkUI_GestureEventActionType =
        ArkUI_GestureEventActionType(1);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureEventActionType {
    /// Updated.
    pub const GESTURE_EVENT_ACTION_UPDATE: ArkUI_GestureEventActionType =
        ArkUI_GestureEventActionType(2);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureEventActionType {
    /// Ended.
    pub const GESTURE_EVENT_ACTION_END: ArkUI_GestureEventActionType =
        ArkUI_GestureEventActionType(4);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureEventActionType {
    /// Canceled.
    pub const GESTURE_EVENT_ACTION_CANCEL: ArkUI_GestureEventActionType =
        ArkUI_GestureEventActionType(8);
}
#[repr(transparent)]
/// Enumerates gesture event types.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GestureEventActionType(pub ::core::ffi::c_uint);
/// Defines a set of gesture event types.
///
/// Example: ArkUI_GestureEventActionTypeMask actions = GESTURE_EVENT_ACTION_ACCEPT | GESTURE_EVENT_ACTION_UPDATE;
///
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub type ArkUI_GestureEventActionTypeMask = u32;
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GesturePriority {
    /// Normal.
    pub const NORMAL: ArkUI_GesturePriority = ArkUI_GesturePriority(0);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GesturePriority {
    /// High-priority.
    pub const PRIORITY: ArkUI_GesturePriority = ArkUI_GesturePriority(1);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GesturePriority {
    /// Parallel.
    pub const PARALLEL: ArkUI_GesturePriority = ArkUI_GesturePriority(2);
}
#[repr(transparent)]
/// Enumerates gesture event modes.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GesturePriority(pub ::core::ffi::c_uint);
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GroupGestureMode {
    pub const SEQUENTIAL_GROUP: ArkUI_GroupGestureMode = ArkUI_GroupGestureMode(0);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GroupGestureMode {
    /// Parallel recognition. Registered gestures are recognized concurrently until all gestures are recognized.
    /// The recognition result of each gesture does not affect each other.
    pub const PARALLEL_GROUP: ArkUI_GroupGestureMode = ArkUI_GroupGestureMode(1);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GroupGestureMode {
    /// Exclusive recognition. Registered gestures are identified concurrently.
    /// If one gesture is successfully recognized, gesture recognition ends.
    pub const EXCLUSIVE_GROUP: ArkUI_GroupGestureMode = ArkUI_GroupGestureMode(2);
}
#[repr(transparent)]
/// Enumerates gesture group modes.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GroupGestureMode(pub ::core::ffi::c_uint);
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// All directions.
    pub const GESTURE_DIRECTION_ALL: ArkUI_GestureDirection = ArkUI_GestureDirection(15);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// Horizontal direction.
    pub const GESTURE_DIRECTION_HORIZONTAL: ArkUI_GestureDirection = ArkUI_GestureDirection(3);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// Vertical direction.
    pub const GESTURE_DIRECTION_VERTICAL: ArkUI_GestureDirection = ArkUI_GestureDirection(12);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// Leftward.
    pub const GESTURE_DIRECTION_LEFT: ArkUI_GestureDirection = ArkUI_GestureDirection(1);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// Rightward.
    pub const GESTURE_DIRECTION_RIGHT: ArkUI_GestureDirection = ArkUI_GestureDirection(2);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// Upward.
    pub const GESTURE_DIRECTION_UP: ArkUI_GestureDirection = ArkUI_GestureDirection(4);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// Downward.
    pub const GESTURE_DIRECTION_DOWN: ArkUI_GestureDirection = ArkUI_GestureDirection(8);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureDirection {
    /// None.
    pub const GESTURE_DIRECTION_NONE: ArkUI_GestureDirection = ArkUI_GestureDirection(0);
}
#[repr(transparent)]
/// Enumerates gesture directions.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GestureDirection(pub ::core::ffi::c_uint);
/// Defines a set of gesture directions.
///
/// Example: ArkUI_GestureDirectionMask directions = GESTURE_DIRECTION_LEFT | GESTURE_DIRECTION_RIGHT
///
/// This example indicates that the leftward and rightward directions are supported.
///
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub type ArkUI_GestureDirectionMask = u32;
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureMask {
    /// The gestures of child components are enabled and recognized based on the default gesture recognition sequence.
    pub const NORMAL_GESTURE_MASK: ArkUI_GestureMask = ArkUI_GestureMask(0);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureMask {
    /// The gestures of child components are disabled, including the built-in gestures.
    pub const IGNORE_INTERNAL_GESTURE_MASK: ArkUI_GestureMask = ArkUI_GestureMask(1);
}
#[repr(transparent)]
/// Enumerates gesture masking modes.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GestureMask(pub ::core::ffi::c_uint);
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerType {
    /// Tap.
    pub const TAP_GESTURE: ArkUI_GestureRecognizerType = ArkUI_GestureRecognizerType(0);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerType {
    /// Long press.
    pub const LONG_PRESS_GESTURE: ArkUI_GestureRecognizerType = ArkUI_GestureRecognizerType(1);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerType {
    /// Pan.
    pub const PAN_GESTURE: ArkUI_GestureRecognizerType = ArkUI_GestureRecognizerType(2);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerType {
    /// Pinch.
    pub const PINCH_GESTURE: ArkUI_GestureRecognizerType = ArkUI_GestureRecognizerType(3);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerType {
    /// Rotate.
    pub const ROTATION_GESTURE: ArkUI_GestureRecognizerType = ArkUI_GestureRecognizerType(4);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerType {
    /// Swipe.
    pub const SWIPE_GESTURE: ArkUI_GestureRecognizerType = ArkUI_GestureRecognizerType(5);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerType {
    /// A group of gestures.
    pub const GROUP_GESTURE: ArkUI_GestureRecognizerType = ArkUI_GestureRecognizerType(6);
}
#[repr(transparent)]
/// Enumerates gesture types.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GestureRecognizerType(pub ::core::ffi::c_uint);
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureInterruptResult {
    /// The gesture recognition process continues.
    pub const GESTURE_INTERRUPT_RESULT_CONTINUE: ArkUI_GestureInterruptResult =
        ArkUI_GestureInterruptResult(0);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureInterruptResult {
    /// The gesture recognition process is paused.
    pub const GESTURE_INTERRUPT_RESULT_REJECT: ArkUI_GestureInterruptResult =
        ArkUI_GestureInterruptResult(1);
}
#[repr(transparent)]
/// Enumerates gesture interruption results.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GestureInterruptResult(pub ::core::ffi::c_uint);
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerState {
    /// Ready.
    pub const ARKUI_GESTURE_RECOGNIZER_STATE_READY: ArkUI_GestureRecognizerState =
        ArkUI_GestureRecognizerState(0);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerState {
    /// Detecting.
    pub const ARKUI_GESTURE_RECOGNIZER_STATE_DETECTING: ArkUI_GestureRecognizerState =
        ArkUI_GestureRecognizerState(1);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerState {
    /// Pending.
    pub const ARKUI_GESTURE_RECOGNIZER_STATE_PENDING: ArkUI_GestureRecognizerState =
        ArkUI_GestureRecognizerState(2);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerState {
    /// Blocked.
    pub const ARKUI_GESTURE_RECOGNIZER_STATE_BLOCKED: ArkUI_GestureRecognizerState =
        ArkUI_GestureRecognizerState(3);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerState {
    /// Successful.
    pub const ARKUI_GESTURE_RECOGNIZER_STATE_SUCCESSFUL: ArkUI_GestureRecognizerState =
        ArkUI_GestureRecognizerState(4);
}
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
impl ArkUI_GestureRecognizerState {
    /// Failed.
    pub const ARKUI_GESTURE_RECOGNIZER_STATE_FAILED: ArkUI_GestureRecognizerState =
        ArkUI_GestureRecognizerState(5);
}
#[repr(transparent)]
/// Enumerates the gesture recognizer states.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[derive(Clone, Hash, PartialEq, Eq)]
pub struct ArkUI_GestureRecognizerState(pub ::core::ffi::c_uint);
/// Defines the gesture recognizer handle.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub type ArkUI_GestureRecognizerHandle = *mut ArkUI_GestureRecognizer;
/// Defines the gesture recognizer handle array.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub type ArkUI_GestureRecognizerHandleArray = *mut ArkUI_GestureRecognizerHandle;
#[repr(C)]
pub struct ArkUI_GestureEventTargetInfo {
    _unused: [u8; 0],
}
#[repr(C)]
pub struct ArkUI_ParallelInnerGestureEvent {
    _unused: [u8; 0],
}
/// Defines a callback function for notifying gesture recognizer destruction.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub type ArkUI_GestureRecognizerDisposeNotifyCallback = ::core::option::Option<
    unsafe extern "C" fn(
        recognizer: *mut ArkUI_GestureRecognizer,
        userData: *mut ::core::ffi::c_void,
    ),
>;
/// Defines the gesture APIs.
///
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
#[repr(C)]
pub struct ArkUI_NativeGestureAPI_1 {
    /// The struct version is 1.
    pub version: i32,
    /// Creates a tap gesture.
    ///
    /// 1. This API is used to trigger a tap gesture with one, two, or more taps.
    ///
    /// 2. If multi-tap is configured, the timeout interval between a lift and the next tap is 300 ms.
    ///
    /// 3. If the distance between the last tapped position and the current tapped position exceeds 60 vp,
    /// gesture recognition fails.
    ///
    /// 4. If the value is greater than 1, the tap gesture will fail to be recognized when the number of fingers
    /// touching the screen within 300 ms of the first finger touch is less than the required number,
    ///
    /// or when the number of fingers lifted from the screen within 300 ms of the first finger's being lifted
    /// is less than the required number.
    ///
    /// 5. When the number of fingers touching the screen exceeds the set value, the gesture can be recognized.
    ///
    ///
    /// # Arguments
    ///
    /// `countNum` - Indicates the number of consecutive taps. If the value is less than 1 or is not set,
    /// the default value <b>1</b> is used.
    ///
    /// `fingersNum` - Indicates the number of fingers required to trigger a tap. The value ranges
    /// from 1 to 10. If the value is less than 1 or is not set, the default value <b>1</b> is used.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture.
    pub createTapGesture: ::core::option::Option<
        unsafe extern "C" fn(countNum: i32, fingersNum: i32) -> *mut ArkUI_GestureRecognizer,
    >,
    /// Creates a long press gesture.
    ///
    /// 1. This API is used to trigger a long press gesture, which requires one or more fingers with a minimum
    /// The value ranges 500 ms hold-down time.
    ///
    /// 2. In components that support drag actions by default, such as <b><Text></b>, <b><TextInput></b>,
    /// <b><TextArea></b>, <b><Hyperlink></b>, <b><Image></b>, and <b>RichEditor></b>, the long press gesture
    ///
    /// may conflict with the drag action. If this occurs, they are handled as follows:
    ///
    /// If the minimum duration of the long press gesture is less than 500 ms, the long press gesture receives
    /// a higher response priority than the drag action.
    ///
    /// If the minimum duration of the long press gesture is greater than or equal to 500 ms,
    /// the drag action receives a higher response priority than the long press gesture.
    ///
    /// 3. If a finger moves more than 15 px after being pressed, the gesture recognition fails.
    ///
    ///
    /// # Arguments
    ///
    /// `fingersNum` - Indicates the minimum number of fingers to trigger a long press gesture.
    /// The value ranges from 1 to 10.
    ///
    /// `repeatResult` - Indicates whether to continuously trigger the event callback.
    ///
    /// `durationNum` - Indicates the minimum hold-down time, in ms.
    /// If the value is less than or equal to 0, the default value <b>500</b> is used.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture.
    pub createLongPressGesture: ::core::option::Option<
        unsafe extern "C" fn(
            fingersNum: i32,
            repeatResult: bool,
            durationNum: i32,
        ) -> *mut ArkUI_GestureRecognizer,
    >,
    /// Creates a pan gesture.
    ///
    /// 1. This API is used to trigger a pan gesture when the movement distance of a finger on the screen exceeds
    /// the minimum value.
    ///
    /// 2. If a pan gesture and a tab swipe occur at the same time, set <b>distanceNum</b> to <b>1</b>
    /// so that the gesture can be more easily recognized.
    ///
    ///
    /// # Arguments
    ///
    /// `fingersNum` - Indicates the minimum number of fingers to trigger a pan gesture. The value ranges from 1 to 10.
    /// If the value is less than 1 or is not set, the default value <b>1</b> is used.
    ///
    /// `directions` - Indicates the pan direction. The value supports the AND (&amp;) and OR (operations.
    ///
    /// `distanceNum` - Indicates the minimum pan distance to trigger the gesture, in vp. If this parameter is
    /// set to a value less than or equal to 0, the default value <b>5</b> is used.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture.
    pub createPanGesture: ::core::option::Option<
        unsafe extern "C" fn(
            fingersNum: i32,
            directions: ArkUI_GestureDirectionMask,
            distanceNum: f64,
        ) -> *mut ArkUI_GestureRecognizer,
    >,
    /// Creates a pinch gesture.
    ///
    /// 1. This API is used to trigger a pinch gesture, which requires two to five fingers with a minimum 5 vp
    /// distance between the fingers.
    ///
    /// 2. While more fingers than the minimum number can be pressed to trigger the gesture, only the first
    /// fingers of the minimum number participate in gesture calculation.
    ///
    ///
    /// # Arguments
    ///
    /// `fingersNum` - Indicates the minimum number of fingers to trigger a pinch. The value ranges from 2 to 5.
    /// Default value: <b>2</b>
    ///
    /// `distanceNum` - Indicates the minimum recognition distance, in px. If this parameter is set to a value less
    /// than or equal to 0, the default value <b>5</b> is used.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture.
    pub createPinchGesture: ::core::option::Option<
        unsafe extern "C" fn(fingersNum: i32, distanceNum: f64) -> *mut ArkUI_GestureRecognizer,
    >,
    /// Creates a rotation gesture.
    ///
    /// 1. This API is used to trigger a rotation gesture, which requires two to five fingers with a
    /// minimum 1-degree rotation angle.
    ///
    /// 2. While more fingers than the minimum number can be pressed to trigger the gesture, only the first
    /// two fingers participate in gesture calculation.
    ///
    ///
    /// # Arguments
    ///
    /// `fingersNum` - Indicates the minimum number of fingers to trigger a rotation. The value ranges from 2 to 5.
    /// Default value: <b>2</b>
    ///
    /// `angleNum` - Indicates the minimum degree that can trigger the rotation gesture. Default value: <b>1</b>
    /// If this parameter is set to a value less than or equal to 0 or greater than 360,
    /// the default value <b>1</b> is used.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture.
    pub createRotationGesture: ::core::option::Option<
        unsafe extern "C" fn(fingersNum: i32, angleNum: f64) -> *mut ArkUI_GestureRecognizer,
    >,
    /// Creates a swipe gesture.
    ///
    /// This API is used to implement a swipe gesture, which can be recognized when the swipe speed is 100
    /// vp/s or higher.
    ///
    ///
    /// # Arguments
    ///
    /// `fingersNum` - Indicates the minimum number of fingers to trigger a swipe gesture.
    /// The value ranges from 1 to 10.
    ///
    /// `directions` - Indicates the swipe direction.
    ///
    /// `speedNum` - Indicates the minimum speed of the swipe gesture, in px/s.
    /// If this parameter is set to a value less than or equal to 0, the default value <b>100</b> is used.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture.
    pub createSwipeGesture: ::core::option::Option<
        unsafe extern "C" fn(
            fingersNum: i32,
            directions: ArkUI_GestureDirectionMask,
            speedNum: f64,
        ) -> *mut ArkUI_GestureRecognizer,
    >,
    /// Creates a gesture group.
    ///
    /// # Arguments
    ///
    /// `gestureMode` - Indicates the gesture group mode.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture group.
    pub createGroupGesture: ::core::option::Option<
        unsafe extern "C" fn(gestureMode: ArkUI_GroupGestureMode) -> *mut ArkUI_GestureRecognizer,
    >,
    /// Disposes a gesture to release resources.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to the gesture to dispose.
    pub dispose:
        ::core::option::Option<unsafe extern "C" fn(recognizer: *mut ArkUI_GestureRecognizer)>,
    /// Adds a gesture to a gesture group.
    ///
    /// # Arguments
    ///
    /// `group` - Indicates the pointer to the gesture group.
    ///
    /// `child` - Indicates the gesture to be added to the gesture group.
    ///
    /// # Returns
    ///
    /// Returns <b>0</b> if success.
    /// Returns <b>401</b> if a parameter exception occurs. Returns 401 if a parameter exception occurs.
    pub addChildGesture: ::core::option::Option<
        unsafe extern "C" fn(
            group: *mut ArkUI_GestureRecognizer,
            child: *mut ArkUI_GestureRecognizer,
        ) -> i32,
    >,
    /// Removes a gesture to a gesture group.
    ///
    /// # Arguments
    ///
    /// `group` - Indicates the pointer to the gesture group.
    ///
    /// `child` - Indicates the gesture to be removed to the gesture group.
    ///
    /// # Returns
    ///
    /// Returns <b>0</b> if success.
    /// Returns <b>401</b> if a parameter exception occurs.
    pub removeChildGesture: ::core::option::Option<
        unsafe extern "C" fn(
            group: *mut ArkUI_GestureRecognizer,
            child: *mut ArkUI_GestureRecognizer,
        ) -> i32,
    >,
    /// Registers a callback for gestures.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to the gesture recognizer.
    ///
    /// `actionTypeMask` - Indicates the set of gesture event types. Multiple callbacks can be registered at once,
    /// with the callback event types distinguished in the callbacks.
    /// Example: actionTypeMask = GESTURE_EVENT_ACTION_ACCEPT | GESTURE_EVENT_ACTION_UPDATE;
    ///
    /// `extraParams` - Indicates the context passed in the <b>targetReceiver</b> callback.
    ///
    /// `targetReceiver` - Indicates the callback to register for processing the gesture event types.
    /// <b>event</b> indicates the gesture callback data.
    ///
    /// # Returns
    ///
    /// Returns <b>0</b> if success.
    /// Returns <b>401</b> if a parameter exception occurs.
    pub setGestureEventTarget: ::core::option::Option<
        unsafe extern "C" fn(
            recognizer: *mut ArkUI_GestureRecognizer,
            actionTypeMask: ArkUI_GestureEventActionTypeMask,
            extraParams: *mut ::core::ffi::c_void,
            targetReceiver: ::core::option::Option<
                unsafe extern "C" fn(
                    event: *mut ArkUI_GestureEvent,
                    extraParams: *mut ::core::ffi::c_void,
                ),
            >,
        ) -> i32,
    >,
    /// Adds a gesture to a UI component.
    ///
    /// # Arguments
    ///
    /// `node` - Indicates the UI component to which you want to add the gesture.
    ///
    /// `recognizer` - Indicates the gesture to be added to the UI component.
    ///
    /// `mode` - Indicates the gesture event mode. Available options are <b>NORMAL_GESTURE</b>,
    /// <b>PARALLEL_GESTURE</b>, and <b>PRIORITY_GESTURE</b>.
    ///
    /// `mask` - Indicates the gesture masking mode.
    ///
    /// # Returns
    ///
    /// Returns <b>0</b> if success.
    /// Returns <b>401</b> if a parameter exception occurs.
    pub addGestureToNode: ::core::option::Option<
        unsafe extern "C" fn(
            node: ArkUI_NodeHandle,
            recognizer: *mut ArkUI_GestureRecognizer,
            mode: ArkUI_GesturePriority,
            mask: ArkUI_GestureMask,
        ) -> i32,
    >,
    /// Removes a gesture from a node.
    ///
    /// # Arguments
    ///
    /// `node` - Indicates the node from which you want to remove the gesture.
    ///
    /// `recognizer` - Indicates the gesture to be removed.
    ///
    /// # Returns
    ///
    /// Returns <b>0</b> if success.
    /// Returns <b>401</b> if a parameter exception occurs.
    pub removeGestureFromNode: ::core::option::Option<
        unsafe extern "C" fn(
            node: ArkUI_NodeHandle,
            recognizer: *mut ArkUI_GestureRecognizer,
        ) -> i32,
    >,
    /// Sets a gesture interruption callback for a node.
    ///
    /// # Arguments
    ///
    /// `node` - Indicates the node for which you want to set a gesture interruption callback.
    ///
    /// `interrupter` - Indicates the gesture interruption callback to set.
    /// <b>info</b> indicates the gesture interruption data. If <b>interrupter</b> returns
    /// <b>GESTURE_INTERRUPT_RESULT_CONTINUE</b>, the gesture recognition process continues. If it returns
    /// <b>GESTURE_INTERRUPT_RESULT_REJECT</b>, the gesture recognition process is paused.
    ///
    /// # Returns
    ///
    /// Returns <b>0</b> if success.
    /// Returns <b>401</b> if a parameter exception occurs.
    pub setGestureInterrupterToNode: ::core::option::Option<
        unsafe extern "C" fn(
            node: ArkUI_NodeHandle,
            interrupter: ::core::option::Option<
                unsafe extern "C" fn(
                    info: *mut ArkUI_GestureInterruptInfo,
                ) -> ArkUI_GestureInterruptResult,
            >,
        ) -> i32,
    >,
    /// Obtains the type of a gesture.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to the gesture.
    ///
    /// # Returns
    ///
    /// Returns the gesture type.
    pub getGestureType: ::core::option::Option<
        unsafe extern "C" fn(
            recognizer: *mut ArkUI_GestureRecognizer,
        ) -> ArkUI_GestureRecognizerType,
    >,
    /// Sets the callback function for a parallel internal gesture event.
    ///
    /// # Arguments
    ///
    /// `node` - Indicates the ArkUI node for which the callback of a parallel internal gesture event is to be set.
    ///
    /// `userData` - Indicates the custom data.
    ///
    /// `parallelInnerGesture` - Indicates the parallel internal gesture event. <b>event</b> returns the data of the
    /// parallel internal gesture event; <b>parallelInnerGesture</b> returns the pointer to the gesture recognizer
    /// that requires parallel recognition.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    pub setInnerGestureParallelTo: ::core::option::Option<
        unsafe extern "C" fn(
            node: ArkUI_NodeHandle,
            userData: *mut ::core::ffi::c_void,
            parallelInnerGesture: ::core::option::Option<
                unsafe extern "C" fn(
                    event: *mut ArkUI_ParallelInnerGestureEvent,
                ) -> *mut ArkUI_GestureRecognizer,
            >,
        ) -> i32,
    >,
    /// Creates a tap gesture that is subject to distance restrictions.
    ///
    /// 1. This API is used to trigger a tap gesture with one, two, or more taps.
    ///
    /// 2. If multi-tap is configured, the timeout interval between a lift and the next tap is 300 ms.
    ///
    /// 3. If the distance between the last tapped position and the current tapped position exceeds 60 vp,
    /// gesture recognition fails.
    ///
    /// 4. If the value is greater than 1, the tap gesture will fail to be recognized when the number of fingers
    /// touching the screen within 300 ms of the first finger touch is less than the required number,
    /// or when the number of fingers lifted from the screen within 300 ms of the first finger's being lifted
    /// is less than the required number.
    ///
    /// 5. When the number of fingers touching the screen exceeds the set value, the gesture can be recognized.
    ///
    /// 6. If the finger moves beyond the preset distance limit, gesture recognition fails.
    ///
    ///
    /// # Arguments
    ///
    /// `countNum` - Indicates the number of consecutive taps. If the value is less than 1 or is not set, the default
    /// value <b>1</b> is used.
    ///
    /// `fingersNum` - Indicates the number of fingers required to trigger a tap. The value ranges from 1 to 10.
    /// If the value is less than 1 or is not set, the default value <b>1</b> is used.
    ///
    /// `distanceThreshold` - Indicates the allowed moving distance of a finger.
    /// If the value is less than 0 or is not set, it will be converted to the default value of infinity.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the created gesture.
    pub createTapGestureWithDistanceThreshold: ::core::option::Option<
        unsafe extern "C" fn(
            countNum: i32,
            fingersNum: i32,
            distanceThreshold: f64,
        ) -> *mut ArkUI_GestureRecognizer,
    >,
}
extern "C" {
    /// Checks whether a gesture is a built-in gesture of the component.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture interruption information.
    ///
    /// # Returns
    ///
    /// Returns <b>true</b> if the gesture is a built-in gesture; returns <b>false</b> otherwise.
    ///
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureInterruptInfo_GetSystemFlag(
        event: *const ArkUI_GestureInterruptInfo,
    ) -> bool;
    /// Obtains the pointer to interrupted gesture recognizer.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture interruption information.
    ///
    /// # Returns
    ///
    /// Returns the pointer to interrupted gesture recognizer.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureInterruptInfo_GetRecognizer(
        event: *const ArkUI_GestureInterruptInfo,
    ) -> *mut ArkUI_GestureRecognizer;
    /// Obtains the pointer to the interrupted gesture event.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture interruption information.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the interrupted gesture event.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureInterruptInfo_GetGestureEvent(
        event: *const ArkUI_GestureInterruptInfo,
    ) -> *mut ArkUI_GestureEvent;
    /// Obtains the type of the system gesture to trigger.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture interruption information.
    ///
    /// # Returns
    ///
    /// Returns the type of the system gesture to trigger. If the gesture to trigger is not a system gesture,
    /// <b>-1</b> is returned.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureInterruptInfo_GetSystemRecognizerType(
        event: *const ArkUI_GestureInterruptInfo,
    ) -> i32;
    /// Obtains the gesture event type.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the gesture event type.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureEvent_GetActionType(
        event: *const ArkUI_GestureEvent,
    ) -> ArkUI_GestureEventActionType;
    /// Obtains gesture input.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the input event of the gesture event.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureEvent_GetRawInputEvent(
        event: *const ArkUI_GestureEvent,
    ) -> *const ArkUI_UIInputEvent;
    /// Obtains the number of times that a long press gesture is triggered periodically.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the number of times that the long press gesture is triggered periodically.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_LongPress_GetRepeatCount(event: *const ArkUI_GestureEvent) -> i32;
    /// Obtains the velocity of a pan gesture along the main axis.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the velocity of the pan gesture along the main axis, in px/s.
    /// The value is the square root of the sum of the squares of the velocity on the x-axis and y-axis.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PanGesture_GetVelocity(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the velocity of a pan gesture along the x-axis.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the velocity of the pan gesture along the x-axis, in px/s.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PanGesture_GetVelocityX(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the velocity of a pan gesture along the y-axis.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the velocity of the pan gesture along the y-axis, in px/s.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PanGesture_GetVelocityY(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the relative offset of a pan gesture along the x-axis.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the relative offset of the gesture along the x-axis, in px.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PanGesture_GetOffsetX(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the relative offset of a pan gesture along the y-axis.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the relative offset of the gesture along the y-axis, in px.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PanGesture_GetOffsetY(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the angle information of the swipe gesture.
    ///
    /// After a swipe gesture is recognized, a line connecting the two fingers is identified as the initial line.
    /// As the fingers swipe, the line between the fingers rotates.
    ///
    /// Based on the coordinates of the initial line's and current line's end points, the arc tangent function is used to
    /// calculate the respective included angle of the points relative to the horizontal direction
    ///
    /// by using the following formula: Rotation angle = arctan2(cy2-cy1,cx2-cx1) - arctan2(y2-y1,x2-x1).
    ///
    /// The initial line is used as the coordinate system. Values from 0 to 180 degrees represent clockwise rotation,
    /// while values from –180 to 0 degrees represent counterclockwise rotation.
    ///
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the angle of the swipe gesture, which is the result obtained based on the aforementioned formula.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_SwipeGesture_GetAngle(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the average velocity of all fingers used in the swipe gesture.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the average velocity of all fingers used in the swipe gesture, in px/s.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_SwipeGesture_GetVelocity(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the angle information of a rotation gesture.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the rotation angle.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_RotationGesture_GetAngle(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the scale ratio of a pinch gesture.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the scale ratio.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PinchGesture_GetScale(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the X coordinate of the center of the pinch gesture, in vp,
    /// relative to the upper left corner of the current component.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the X coordinate of the center of the pinch gesture, in vp,
    /// relative to the upper left corner of the current component.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PinchGesture_GetCenterX(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains the Y coordinate of the center of the pinch gesture, in vp,
    /// relative to the upper left corner of the current component.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture event.
    ///
    /// # Returns
    ///
    /// Returns the Y coordinate of the center of the pinch gesture, in vp,
    /// relative to the upper left corner of the current component.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_PinchGesture_GetCenterY(event: *const ArkUI_GestureEvent) -> f32;
    /// Obtains information about a gesture response chain.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to the gesture interruption information.
    ///
    /// `responseChain` - Indicates the pointer to an array of gesture recognizers on the response chain.
    ///
    /// `count` - Indicates the pointer to the number of gesture recognizers on the response chain.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GetResponseRecognizersFromInterruptInfo(
        event: *const ArkUI_GestureInterruptInfo,
        responseChain: *mut ArkUI_GestureRecognizerHandleArray,
        count: *mut i32,
    ) -> i32;
    /// Sets the enabled state of a gesture recognizer.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// `enabled` - Indicates the enabled state.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_SetGestureRecognizerEnabled(
        recognizer: *mut ArkUI_GestureRecognizer,
        enabled: bool,
    ) -> i32;
    /// Obtains the enabled state of a gesture recognizer.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// # Returns
    ///
    /// Returns <b>true</b> if the gesture recognizer is enabled.
    /// Returns <b>false</b> if the gesture recognizer is disabled.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GetGestureRecognizerEnabled(recognizer: *mut ArkUI_GestureRecognizer) -> bool;
    /// Obtains the state of a gesture recognizer.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// `state` - Indicates the pointer to the state of the gesture recognizer.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GetGestureRecognizerState(
        recognizer: *mut ArkUI_GestureRecognizer,
        state: *mut ArkUI_GestureRecognizerState,
    ) -> i32;
    /// Obtains the information about a gesture event target.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// `info` - Indicates the information about a gesture event target.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GetGestureEventTargetInfo(
        recognizer: *mut ArkUI_GestureRecognizer,
        info: *mut *mut ArkUI_GestureEventTargetInfo,
    ) -> i32;
    /// Obtains whether this scroll container is scrolled to the top.
    ///
    /// # Arguments
    ///
    /// `info` - Indicates the information about a gesture event target.
    ///
    /// `ret` - Indicates whether the scroll container is scrolled to the top.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    /// Returns [`ARKUI_ERROR_CODE_NON_SCROLLABLE_CONTAINER`] if the component is not a scroll container.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureEventTargetInfo_IsScrollBegin(
        info: *mut ArkUI_GestureEventTargetInfo,
        ret: *mut bool,
    ) -> i32;
    /// Obtains whether this scroll container is scrolled to the bottom.
    ///
    /// # Arguments
    ///
    /// `info` - Indicates the information about a gesture event target.
    ///
    /// `ret` - Indicates whether the scroll container is scrolled to the bottom.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    /// Returns [`ARKUI_ERROR_CODE_NON_SCROLLABLE_CONTAINER`] if the component is not a scroll container.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GestureEventTargetInfo_IsScrollEnd(
        info: *mut ArkUI_GestureEventTargetInfo,
        ret: *mut bool,
    ) -> i32;
    /// Obtains the direction of a pan gesture.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// `directionMask` - Indicates the pan direction.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GetPanGestureDirectionMask(
        recognizer: *mut ArkUI_GestureRecognizer,
        directionMask: *mut ArkUI_GestureDirectionMask,
    ) -> i32;
    /// Obtains whether a gesture is a built-in gesture.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// # Returns
    ///
    /// Returns <b>true</b> if the gesture is a built-in gesture; returns <b>false</b> otherwise.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_IsBuiltInGesture(recognizer: *mut ArkUI_GestureRecognizer) -> bool;
    /// Obtains the tag of a gesture recognizer.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// `buffer` - Indicates the buffer.
    ///
    /// `bufferSize` - Indicates the buffer size.
    ///
    /// `result` - Indicates the length of the string to be written to the buffer.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    /// Returns [`ARKUI_ERROR_CODE_BUFFER_SIZE_NOT_ENOUGH`] if the buffer is not large enough.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GetGestureTag(
        recognizer: *mut ArkUI_GestureRecognizer,
        buffer: *mut ::core::ffi::c_char,
        bufferSize: i32,
        result: *mut i32,
    ) -> i32;
    /// Obtains the ID of the component linked to a gesture recognizer.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// `nodeId` - Indicates the component ID.
    ///
    /// `size` - Indicates the buffer size.
    ///
    /// `result` - Indicates the length of the string to be written to the buffer.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    /// Returns [`ARKUI_ERROR_CODE_BUFFER_SIZE_NOT_ENOUGH`] if the buffer is not large enough.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_GetGestureBindNodeId(
        recognizer: *mut ArkUI_GestureRecognizer,
        nodeId: *mut ::core::ffi::c_char,
        size: i32,
        result: *mut i32,
    ) -> i32;
    /// Obtains whether a gesture recognizer is valid.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// # Returns
    ///
    /// Returns <b>true</b> if the gesture recognizer is valid.
    /// Returns <b>false</b> if the gesture recognizer is invalid.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_IsGestureRecognizerValid(recognizer: *mut ArkUI_GestureRecognizer) -> bool;
    /// Obtains custom data in the parallel internal gesture event.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to a parallel internal gesture event.
    ///
    /// # Returns
    ///
    /// Returns the pointer to custom data.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_ParallelInnerGestureEvent_GetUserData(
        event: *mut ArkUI_ParallelInnerGestureEvent,
    ) -> *mut ::core::ffi::c_void;
    /// Obtains the current gesture recognizer in a parallel internal gesture event.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to a parallel internal gesture event.
    ///
    /// # Returns
    ///
    /// Returns the pointer to the current gesture recognizer.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_ParallelInnerGestureEvent_GetCurrentRecognizer(
        event: *mut ArkUI_ParallelInnerGestureEvent,
    ) -> *mut ArkUI_GestureRecognizer;
    /// Obtains the conflicting gesture recognizers in a parallel internal gesture event.
    ///
    /// # Arguments
    ///
    /// `event` - Indicates the pointer to a parallel internal gesture event.
    ///
    /// `array` - Indicates the pointer to the array of conflicting gesture recognizers.
    ///
    /// `size` - Indicates the size of the array of conflicting gesture recognizers.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    ///
    /// Available since API-level: 12
    #[cfg(feature = "api-12")]
    #[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
    pub fn OH_ArkUI_ParallelInnerGestureEvent_GetConflictRecognizers(
        event: *mut ArkUI_ParallelInnerGestureEvent,
        array: *mut ArkUI_GestureRecognizerHandleArray,
        size: *mut i32,
    ) -> i32;
    /// Sets a callback function for notifying gesture recognizer destruction.
    ///
    /// # Arguments
    ///
    /// `recognizer` - Indicates the pointer to a gesture recognizer.
    ///
    /// `callback` - Indicates the callback function for notifying gesture recognizer destruction.
    ///
    /// `userData` - Indicates the custom data.
    ///
    /// # Returns
    ///
    /// Returns [`ARKUI_ERROR_CODE_NO_ERROR`] if success.
    /// Returns [`ARKUI_ERROR_CODE_PARAM_INVALID`] if a parameter exception occurs.
    pub fn OH_ArkUI_SetArkUIGestureRecognizerDisposeNotify(
        recognizer: *mut ArkUI_GestureRecognizer,
        callback: ArkUI_GestureRecognizerDisposeNotifyCallback,
        userData: *mut ::core::ffi::c_void,
    ) -> i32;
}