pub unsafe trait UIIndirectScribbleInteractionDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn indirectScribbleInteraction_requestElementsInRect_completion(
        &self,
        interaction: &UIIndirectScribbleInteraction,
        rect: CGRect,
        completion: &Block<dyn Fn(NonNull<NSArray<UIScribbleElementIdentifier>>)>
    )
       where Self: Sized + Message { ... }
    unsafe fn indirectScribbleInteraction_isElementFocused(
        &self,
        interaction: &UIIndirectScribbleInteraction,
        element_identifier: &UIScribbleElementIdentifier
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn indirectScribbleInteraction_frameForElement(
        &self,
        interaction: &UIIndirectScribbleInteraction,
        element_identifier: &UIScribbleElementIdentifier
    ) -> CGRect
       where Self: Sized + Message { ... }
    unsafe fn indirectScribbleInteraction_focusElementIfNeeded_referencePoint_completion(
        &self,
        interaction: &UIIndirectScribbleInteraction,
        element_identifier: &UIScribbleElementIdentifier,
        focus_reference_point: CGPoint,
        completion: &Block<dyn Fn(*mut UIResponder)>
    )
       where Self: Sized + Message { ... }
    unsafe fn indirectScribbleInteraction_shouldDelayFocusForElement(
        &self,
        interaction: &UIIndirectScribbleInteraction,
        element_identifier: &UIScribbleElementIdentifier
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn indirectScribbleInteraction_willBeginWritingInElement(
        &self,
        interaction: &UIIndirectScribbleInteraction,
        element_identifier: &UIScribbleElementIdentifier
    )
       where Self: Sized + Message { ... }
    unsafe fn indirectScribbleInteraction_didFinishWritingInElement(
        &self,
        interaction: &UIIndirectScribbleInteraction,
        element_identifier: &UIScribbleElementIdentifier
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UIIndirectScribbleInteraction only.

Provided Methods§

source

unsafe fn indirectScribbleInteraction_requestElementsInRect_completion( &self, interaction: &UIIndirectScribbleInteraction, rect: CGRect, completion: &Block<dyn Fn(NonNull<NSArray<UIScribbleElementIdentifier>>)> )
where Self: Sized + Message,

Available on crate feature block2 only.
source

unsafe fn indirectScribbleInteraction_isElementFocused( &self, interaction: &UIIndirectScribbleInteraction, element_identifier: &UIScribbleElementIdentifier ) -> bool
where Self: Sized + Message,

source

unsafe fn indirectScribbleInteraction_frameForElement( &self, interaction: &UIIndirectScribbleInteraction, element_identifier: &UIScribbleElementIdentifier ) -> CGRect
where Self: Sized + Message,

source

unsafe fn indirectScribbleInteraction_focusElementIfNeeded_referencePoint_completion( &self, interaction: &UIIndirectScribbleInteraction, element_identifier: &UIScribbleElementIdentifier, focus_reference_point: CGPoint, completion: &Block<dyn Fn(*mut UIResponder)> )
where Self: Sized + Message,

Available on crate features UIResponder and UITextInput and UITextInputTraits and block2 only.
source

unsafe fn indirectScribbleInteraction_shouldDelayFocusForElement( &self, interaction: &UIIndirectScribbleInteraction, element_identifier: &UIScribbleElementIdentifier ) -> bool
where Self: Sized + Message,

source

unsafe fn indirectScribbleInteraction_willBeginWritingInElement( &self, interaction: &UIIndirectScribbleInteraction, element_identifier: &UIScribbleElementIdentifier )
where Self: Sized + Message,

source

unsafe fn indirectScribbleInteraction_didFinishWritingInElement( &self, interaction: &UIIndirectScribbleInteraction, element_identifier: &UIScribbleElementIdentifier )
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn UIIndirectScribbleInteractionDelegate

source§

const NAME: &'static str = "UIIndirectScribbleInteractionDelegate"

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 UIIndirectScribbleInteractionDelegate

Implementations on Foreign Types§

source§

impl<T> UIIndirectScribbleInteractionDelegate for ProtocolObject<T>

Implementors§