pub unsafe trait NSCandidateListTouchBarItemDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn candidateListTouchBarItem_beginSelectingCandidateAtIndex(
        &self,
        an_item: &NSCandidateListTouchBarItem,
        index: NSInteger
    )
       where Self: Sized + Message { ... }
    unsafe fn candidateListTouchBarItem_changeSelectionFromCandidateAtIndex_toIndex(
        &self,
        an_item: &NSCandidateListTouchBarItem,
        previous_index: NSInteger,
        index: NSInteger
    )
       where Self: Sized + Message { ... }
    unsafe fn candidateListTouchBarItem_endSelectingCandidateAtIndex(
        &self,
        an_item: &NSCandidateListTouchBarItem,
        index: NSInteger
    )
       where Self: Sized + Message { ... }
    unsafe fn candidateListTouchBarItem_changedCandidateListVisibility(
        &self,
        an_item: &NSCandidateListTouchBarItem,
        is_visible: bool
    )
       where Self: Sized + Message { ... }
}
Available on crate feature NSCandidateListTouchBarItem only.

Provided Methods§

source

unsafe fn candidateListTouchBarItem_beginSelectingCandidateAtIndex( &self, an_item: &NSCandidateListTouchBarItem, index: NSInteger )
where Self: Sized + Message,

Available on crate feature NSTouchBarItem only.
source

unsafe fn candidateListTouchBarItem_changeSelectionFromCandidateAtIndex_toIndex( &self, an_item: &NSCandidateListTouchBarItem, previous_index: NSInteger, index: NSInteger )
where Self: Sized + Message,

Available on crate feature NSTouchBarItem only.
source

unsafe fn candidateListTouchBarItem_endSelectingCandidateAtIndex( &self, an_item: &NSCandidateListTouchBarItem, index: NSInteger )
where Self: Sized + Message,

Available on crate feature NSTouchBarItem only.
source

unsafe fn candidateListTouchBarItem_changedCandidateListVisibility( &self, an_item: &NSCandidateListTouchBarItem, is_visible: bool )
where Self: Sized + Message,

Available on crate feature NSTouchBarItem only.

Trait Implementations§

source§

impl ProtocolType for dyn NSCandidateListTouchBarItemDelegate

source§

const NAME: &'static str = "NSCandidateListTouchBarItemDelegate"

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 NSCandidateListTouchBarItemDelegate

Implementations on Foreign Types§

source§

impl<T> NSCandidateListTouchBarItemDelegate for ProtocolObject<T>

Implementors§

source§

impl NSCandidateListTouchBarItemDelegate for NSTextView

Available on crate features NSResponder and NSText and NSView and NSTextView only.