use crate::common::*;
use crate::AppKit::*;
use crate::CoreData::*;
use crate::Foundation::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NSPressGestureRecognizer;
unsafe impl ClassType for NSPressGestureRecognizer {
#[inherits(NSObject)]
type Super = NSGestureRecognizer;
}
);
extern_methods!(
unsafe impl NSPressGestureRecognizer {
#[method(buttonMask)]
pub unsafe fn buttonMask(&self) -> NSUInteger;
#[method(setButtonMask:)]
pub unsafe fn setButtonMask(&self, buttonMask: NSUInteger);
#[method(minimumPressDuration)]
pub unsafe fn minimumPressDuration(&self) -> NSTimeInterval;
#[method(setMinimumPressDuration:)]
pub unsafe fn setMinimumPressDuration(&self, minimumPressDuration: NSTimeInterval);
#[method(allowableMovement)]
pub unsafe fn allowableMovement(&self) -> CGFloat;
#[method(setAllowableMovement:)]
pub unsafe fn setAllowableMovement(&self, allowableMovement: CGFloat);
#[method(numberOfTouchesRequired)]
pub unsafe fn numberOfTouchesRequired(&self) -> NSInteger;
#[method(setNumberOfTouchesRequired:)]
pub unsafe fn setNumberOfTouchesRequired(&self, numberOfTouchesRequired: NSInteger);
}
);
extern_methods!(
unsafe impl NSPressGestureRecognizer {
#[method_id(@__retain_semantics Init initWithTarget:action:)]
pub unsafe fn initWithTarget_action(
this: Option<Allocated<Self>>,
target: Option<&Object>,
action: Option<Sel>,
) -> Id<Self, Shared>;
}
);