use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "UIGestureRecognizer")]
pub struct UIPinchGestureRecognizer;
#[cfg(feature = "UIGestureRecognizer")]
unsafe impl ClassType for UIPinchGestureRecognizer {
#[inherits(NSObject)]
type Super = UIGestureRecognizer;
type Mutability = MainThreadOnly;
}
);
#[cfg(feature = "UIGestureRecognizer")]
unsafe impl NSObjectProtocol for UIPinchGestureRecognizer {}
extern_methods!(
#[cfg(feature = "UIGestureRecognizer")]
unsafe impl UIPinchGestureRecognizer {
#[method(scale)]
pub fn scale(&self) -> CGFloat;
#[method(setScale:)]
pub unsafe fn setScale(&self, scale: CGFloat);
#[method(velocity)]
pub fn velocity(&self) -> CGFloat;
}
);
extern_methods!(
#[cfg(feature = "UIGestureRecognizer")]
unsafe impl UIPinchGestureRecognizer {
#[method_id(@__retain_semantics Init initWithTarget:action:)]
pub unsafe fn initWithTarget_action(
this: Allocated<Self>,
target: Option<&AnyObject>,
action: Option<Sel>,
) -> Retained<Self>;
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[method_id(@__retain_semantics Init initWithCoder:)]
pub unsafe fn initWithCoder(
this: Allocated<Self>,
coder: &NSCoder,
) -> Option<Retained<Self>>;
}
);
extern_methods!(
#[cfg(feature = "UIGestureRecognizer")]
unsafe impl UIPinchGestureRecognizer {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
}
);