use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "NSGestureRecognizer")]
pub struct NSPanGestureRecognizer;
#[cfg(feature = "NSGestureRecognizer")]
unsafe impl ClassType for NSPanGestureRecognizer {
#[inherits(NSObject)]
type Super = NSGestureRecognizer;
type Mutability = MainThreadOnly;
}
);
#[cfg(feature = "NSGestureRecognizer")]
unsafe impl NSCoding for NSPanGestureRecognizer {}
#[cfg(feature = "NSGestureRecognizer")]
unsafe impl NSObjectProtocol for NSPanGestureRecognizer {}
extern_methods!(
#[cfg(feature = "NSGestureRecognizer")]
unsafe impl NSPanGestureRecognizer {
#[method(buttonMask)]
pub unsafe fn buttonMask(&self) -> NSUInteger;
#[method(setButtonMask:)]
pub unsafe fn setButtonMask(&self, button_mask: NSUInteger);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[method(translationInView:)]
pub unsafe fn translationInView(&self, view: Option<&NSView>) -> NSPoint;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[method(setTranslation:inView:)]
pub unsafe fn setTranslation_inView(&self, translation: NSPoint, view: Option<&NSView>);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[method(velocityInView:)]
pub unsafe fn velocityInView(&self, view: Option<&NSView>) -> NSPoint;
#[method(numberOfTouchesRequired)]
pub unsafe fn numberOfTouchesRequired(&self) -> NSInteger;
#[method(setNumberOfTouchesRequired:)]
pub unsafe fn setNumberOfTouchesRequired(&self, number_of_touches_required: NSInteger);
}
);
extern_methods!(
#[cfg(feature = "NSGestureRecognizer")]
unsafe impl NSPanGestureRecognizer {
#[method_id(@__retain_semantics Init initWithTarget:action:)]
pub unsafe fn initWithTarget_action(
this: Allocated<Self>,
target: Option<&AnyObject>,
action: Option<Sel>,
) -> Id<Self>;
#[method_id(@__retain_semantics Init initWithCoder:)]
pub unsafe fn initWithCoder(this: Allocated<Self>, coder: &NSCoder) -> Option<Id<Self>>;
}
);
extern_methods!(
#[cfg(feature = "NSGestureRecognizer")]
unsafe impl NSPanGestureRecognizer {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Id<Self>;
}
);