pub unsafe trait IMKMouseHandling {
// Provided methods
unsafe fn mouseDownOnCharacterIndex_coordinate_withModifier_continueTracking_client(
&self,
index: NSUInteger,
point: NSPoint,
flags: NSUInteger,
keep_tracking: *mut Bool,
sender: Option<&AnyObject>
) -> bool
where Self: Sized + Message { ... }
unsafe fn mouseUpOnCharacterIndex_coordinate_withModifier_client(
&self,
index: NSUInteger,
point: NSPoint,
flags: NSUInteger,
sender: Option<&AnyObject>
) -> bool
where Self: Sized + Message { ... }
unsafe fn mouseMovedOnCharacterIndex_coordinate_withModifier_client(
&self,
index: NSUInteger,
point: NSPoint,
flags: NSUInteger,
sender: Option<&AnyObject>
) -> bool
where Self: Sized + Message { ... }
}
Available on crate feature
IMKInputController
only.