Trait objc2_input_method_kit::IMKMouseHandling

source ·
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.

Provided Methods§

Trait Implementations§

source§

impl ProtocolType for dyn IMKMouseHandling

source§

const NAME: &'static str = "IMKMouseHandling"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn IMKMouseHandling

Implementations on Foreign Types§

source§

impl<T> IMKMouseHandling for ProtocolObject<T>
where T: ?Sized + IMKMouseHandling,

Implementors§