use ohos_arkui_sys::*;
use ohos_enum_derive::EnumFrom;
#[derive(Debug, Clone, Copy, PartialEq, Eq, EnumFrom)]
#[config(ArkUI_GestureRecognizerType, "ArkUI_GestureRecognizerType_")]
pub enum GestureRecognizerType {
TapGesture,
LongPressGesture,
PanGesture,
PinchGesture,
RotationGesture,
SwipeGesture,
GroupGesture,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, EnumFrom)]
#[config(
ArkUI_GestureInterruptResult,
"ArkUI_GestureInterruptResult_GESTURE_INTERRUPT_RESULT_"
)]
pub enum GestureInterruptResult {
Continue,
Reject,
}