objc2-app-kit 0.2.2

Bindings to the AppKit framework
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;

use crate::*;

extern_protocol!(
    pub unsafe trait NSValidatedUserInterfaceItem: IsMainThreadOnly {
        #[method(action)]
        unsafe fn action(&self) -> Option<Sel>;

        #[method(tag)]
        unsafe fn tag(&self) -> NSInteger;
    }

    unsafe impl ProtocolType for dyn NSValidatedUserInterfaceItem {}
);

extern_protocol!(
    pub unsafe trait NSUserInterfaceValidations: IsMainThreadOnly {
        #[method(validateUserInterfaceItem:)]
        unsafe fn validateUserInterfaceItem(
            &self,
            item: &ProtocolObject<dyn NSValidatedUserInterfaceItem>,
        ) -> bool;
    }

    unsafe impl ProtocolType for dyn NSUserInterfaceValidations {}
);