use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(NSGestureRecognizer, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "NSGestureRecognizer")]
pub struct NSPanGestureRecognizer;
);
#[cfg(feature = "NSGestureRecognizer")]
extern_conformance!(
unsafe impl NSCoding for NSPanGestureRecognizer {}
);
#[cfg(feature = "NSGestureRecognizer")]
extern_conformance!(
unsafe impl NSObjectProtocol for NSPanGestureRecognizer {}
);
#[cfg(feature = "NSGestureRecognizer")]
impl NSPanGestureRecognizer {
extern_methods!(
#[unsafe(method(buttonMask))]
#[unsafe(method_family = none)]
pub fn buttonMask(&self) -> NSUInteger;
#[unsafe(method(setButtonMask:))]
#[unsafe(method_family = none)]
pub fn setButtonMask(&self, button_mask: NSUInteger);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[unsafe(method(translationInView:))]
#[unsafe(method_family = none)]
pub fn translationInView(&self, view: Option<&NSView>) -> NSPoint;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[unsafe(method(setTranslation:inView:))]
#[unsafe(method_family = none)]
pub fn setTranslation_inView(&self, translation: NSPoint, view: Option<&NSView>);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[unsafe(method(velocityInView:))]
#[unsafe(method_family = none)]
pub fn velocityInView(&self, view: Option<&NSView>) -> NSPoint;
#[unsafe(method(numberOfTouchesRequired))]
#[unsafe(method_family = none)]
pub fn numberOfTouchesRequired(&self) -> NSInteger;
#[unsafe(method(setNumberOfTouchesRequired:))]
#[unsafe(method_family = none)]
pub fn setNumberOfTouchesRequired(&self, number_of_touches_required: NSInteger);
);
}
#[cfg(feature = "NSGestureRecognizer")]
impl NSPanGestureRecognizer {
extern_methods!(
#[unsafe(method(initWithTarget:action:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithTarget_action(
this: Allocated<Self>,
target: Option<&AnyObject>,
action: Option<Sel>,
) -> Retained<Self>;
#[unsafe(method(initWithCoder:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithCoder(
this: Allocated<Self>,
coder: &NSCoder,
) -> Option<Retained<Self>>;
);
}
#[cfg(feature = "NSGestureRecognizer")]
impl NSPanGestureRecognizer {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new(mtm: MainThreadMarker) -> Retained<Self>;
);
}