pub unsafe trait NSInputServerMouseTracker {
// Provided methods
unsafe fn mouseDownOnCharacterIndex_atCoordinate_withModifier_client(
&self,
index: NSUInteger,
point: NSPoint,
flags: NSUInteger,
sender: Option<&AnyObject>
) -> bool
where Self: Sized + Message { ... }
unsafe fn mouseDraggedOnCharacterIndex_atCoordinate_withModifier_client(
&self,
index: NSUInteger,
point: NSPoint,
flags: NSUInteger,
sender: Option<&AnyObject>
) -> bool
where Self: Sized + Message { ... }
unsafe fn mouseUpOnCharacterIndex_atCoordinate_withModifier_client(
&self,
index: NSUInteger,
point: NSPoint,
flags: NSUInteger,
sender: Option<&AnyObject>
)
where Self: Sized + Message { ... }
}
Available on crate feature
NSInputServer
only.Provided Methods§
unsafe fn mouseDownOnCharacterIndex_atCoordinate_withModifier_client( &self, index: NSUInteger, point: NSPoint, flags: NSUInteger, sender: Option<&AnyObject> ) -> bool
👎Deprecated
unsafe fn mouseDraggedOnCharacterIndex_atCoordinate_withModifier_client( &self, index: NSUInteger, point: NSPoint, flags: NSUInteger, sender: Option<&AnyObject> ) -> bool
👎Deprecated
unsafe fn mouseUpOnCharacterIndex_atCoordinate_withModifier_client( &self, index: NSUInteger, point: NSPoint, flags: NSUInteger, sender: Option<&AnyObject> )
👎Deprecated