//! This file has been automatically generated by `objc2`'s `header-translator`. //! DO NOT EDIT use core::ffi::*; use core::ptr::NonNull; use objc2::__framework_prelude::*; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] use objc2_core_services::*; use crate::*; /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsappleeventsendoptions?language=objc) // NS_OPTIONS #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] pub struct NSAppleEventSendOptions(pub NSUInteger); bitflags::bitflags! { impl NSAppleEventSendOptions: NSUInteger { #[doc(alias = "NSAppleEventSendNoReply")] const NoReply = 1; #[doc(alias = "NSAppleEventSendQueueReply")] const QueueReply = 2; #[doc(alias = "NSAppleEventSendWaitForReply")] const WaitForReply = 3; #[doc(alias = "NSAppleEventSendNeverInteract")] const NeverInteract = 16; #[doc(alias = "NSAppleEventSendCanInteract")] const CanInteract = 32; #[doc(alias = "NSAppleEventSendAlwaysInteract")] const AlwaysInteract = 48; #[doc(alias = "NSAppleEventSendCanSwitchLayer")] const CanSwitchLayer = 64; #[doc(alias = "NSAppleEventSendDontRecord")] const DontRecord = 4096; #[doc(alias = "NSAppleEventSendDontExecute")] const DontExecute = 8192; #[doc(alias = "NSAppleEventSendDontAnnotate")] const DontAnnotate = 65536; #[doc(alias = "NSAppleEventSendDefaultOptions")] const DefaultOptions = 35; } } unsafe impl Encode for NSAppleEventSendOptions { const ENCODING: Encoding = NSUInteger::ENCODING; } unsafe impl RefEncode for NSAppleEventSendOptions { const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING); } extern_class!( /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nsappleeventdescriptor?language=objc) #[unsafe(super(NSObject))] #[derive(Debug, PartialEq, Eq, Hash)] pub struct NSAppleEventDescriptor; ); #[cfg(feature = "NSObject")] extern_conformance!( unsafe impl NSCoding for NSAppleEventDescriptor {} ); #[cfg(feature = "NSObject")] extern_conformance!( unsafe impl NSCopying for NSAppleEventDescriptor {} ); #[cfg(feature = "NSObject")] unsafe impl CopyingHelper for NSAppleEventDescriptor { type Result = Self; } extern_conformance!( unsafe impl NSObjectProtocol for NSAppleEventDescriptor {} ); #[cfg(feature = "NSObject")] extern_conformance!( unsafe impl NSSecureCoding for NSAppleEventDescriptor {} ); impl NSAppleEventDescriptor { extern_methods!( #[unsafe(method(nullDescriptor))] #[unsafe(method_family = none)] pub fn nullDescriptor() -> Retained; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] /// # Safety /// /// `bytes` must be a valid pointer or null. #[unsafe(method(descriptorWithDescriptorType:bytes:length:))] #[unsafe(method_family = none)] pub unsafe fn descriptorWithDescriptorType_bytes_length( descriptor_type: DescType, bytes: *const c_void, byte_count: NSUInteger, ) -> Option>; #[cfg(all(feature = "NSData", feature = "objc2-core-services"))] #[cfg(target_vendor = "apple")] #[unsafe(method(descriptorWithDescriptorType:data:))] #[unsafe(method_family = none)] pub fn descriptorWithDescriptorType_data( descriptor_type: DescType, data: Option<&NSData>, ) -> Option>; #[unsafe(method(descriptorWithBoolean:))] #[unsafe(method_family = none)] pub fn descriptorWithBoolean(boolean: Boolean) -> Retained; #[unsafe(method(descriptorWithEnumCode:))] #[unsafe(method_family = none)] pub fn descriptorWithEnumCode(enumerator: OSType) -> Retained; #[unsafe(method(descriptorWithInt32:))] #[unsafe(method_family = none)] pub fn descriptorWithInt32(signed_int: i32) -> Retained; #[unsafe(method(descriptorWithDouble:))] #[unsafe(method_family = none)] pub fn descriptorWithDouble(double_value: c_double) -> Retained; #[unsafe(method(descriptorWithTypeCode:))] #[unsafe(method_family = none)] pub fn descriptorWithTypeCode(type_code: OSType) -> Retained; #[cfg(feature = "NSString")] #[unsafe(method(descriptorWithString:))] #[unsafe(method_family = none)] pub fn descriptorWithString(string: &NSString) -> Retained; #[cfg(feature = "NSDate")] #[unsafe(method(descriptorWithDate:))] #[unsafe(method_family = none)] pub fn descriptorWithDate(date: &NSDate) -> Retained; #[cfg(feature = "NSURL")] #[unsafe(method(descriptorWithFileURL:))] #[unsafe(method_family = none)] pub fn descriptorWithFileURL(file_url: &NSURL) -> Retained; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(appleEventWithEventClass:eventID:targetDescriptor:returnID:transactionID:))] #[unsafe(method_family = none)] pub fn appleEventWithEventClass_eventID_targetDescriptor_returnID_transactionID( event_class: AEEventClass, event_id: AEEventID, target_descriptor: Option<&NSAppleEventDescriptor>, return_id: AEReturnID, transaction_id: AETransactionID, ) -> Retained; #[unsafe(method(listDescriptor))] #[unsafe(method_family = none)] pub fn listDescriptor() -> Retained; #[unsafe(method(recordDescriptor))] #[unsafe(method_family = none)] pub fn recordDescriptor() -> Retained; #[unsafe(method(currentProcessDescriptor))] #[unsafe(method_family = none)] pub fn currentProcessDescriptor() -> Retained; #[cfg(feature = "libc")] #[unsafe(method(descriptorWithProcessIdentifier:))] #[unsafe(method_family = none)] pub fn descriptorWithProcessIdentifier( process_identifier: libc::pid_t, ) -> Retained; #[cfg(feature = "NSString")] #[unsafe(method(descriptorWithBundleIdentifier:))] #[unsafe(method_family = none)] pub fn descriptorWithBundleIdentifier( bundle_identifier: &NSString, ) -> Retained; #[cfg(feature = "NSURL")] #[unsafe(method(descriptorWithApplicationURL:))] #[unsafe(method_family = none)] pub fn descriptorWithApplicationURL( application_url: &NSURL, ) -> Retained; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] /// # Safety /// /// `ae_desc` must be a valid pointer. #[unsafe(method(initWithAEDescNoCopy:))] #[unsafe(method_family = init)] pub unsafe fn initWithAEDescNoCopy( this: Allocated, ae_desc: NonNull, ) -> Retained; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] /// # Safety /// /// `bytes` must be a valid pointer or null. #[unsafe(method(initWithDescriptorType:bytes:length:))] #[unsafe(method_family = init)] pub unsafe fn initWithDescriptorType_bytes_length( this: Allocated, descriptor_type: DescType, bytes: *const c_void, byte_count: NSUInteger, ) -> Option>; #[cfg(all(feature = "NSData", feature = "objc2-core-services"))] #[cfg(target_vendor = "apple")] #[unsafe(method(initWithDescriptorType:data:))] #[unsafe(method_family = init)] pub fn initWithDescriptorType_data( this: Allocated, descriptor_type: DescType, data: Option<&NSData>, ) -> Option>; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(initWithEventClass:eventID:targetDescriptor:returnID:transactionID:))] #[unsafe(method_family = init)] pub fn initWithEventClass_eventID_targetDescriptor_returnID_transactionID( this: Allocated, event_class: AEEventClass, event_id: AEEventID, target_descriptor: Option<&NSAppleEventDescriptor>, return_id: AEReturnID, transaction_id: AETransactionID, ) -> Retained; #[unsafe(method(initListDescriptor))] #[unsafe(method_family = init)] pub fn initListDescriptor(this: Allocated) -> Retained; #[unsafe(method(initRecordDescriptor))] #[unsafe(method_family = init)] pub fn initRecordDescriptor(this: Allocated) -> Retained; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(aeDesc))] #[unsafe(method_family = none)] pub fn aeDesc(&self) -> *const AEDesc; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(descriptorType))] #[unsafe(method_family = none)] pub fn descriptorType(&self) -> DescType; #[cfg(feature = "NSData")] #[unsafe(method(data))] #[unsafe(method_family = none)] pub fn data(&self) -> Retained; #[unsafe(method(booleanValue))] #[unsafe(method_family = none)] pub fn booleanValue(&self) -> Boolean; #[unsafe(method(enumCodeValue))] #[unsafe(method_family = none)] pub fn enumCodeValue(&self) -> OSType; #[unsafe(method(int32Value))] #[unsafe(method_family = none)] pub fn int32Value(&self) -> i32; #[unsafe(method(doubleValue))] #[unsafe(method_family = none)] pub fn doubleValue(&self) -> c_double; #[unsafe(method(typeCodeValue))] #[unsafe(method_family = none)] pub fn typeCodeValue(&self) -> OSType; #[cfg(feature = "NSString")] #[unsafe(method(stringValue))] #[unsafe(method_family = none)] pub fn stringValue(&self) -> Option>; #[cfg(feature = "NSDate")] #[unsafe(method(dateValue))] #[unsafe(method_family = none)] pub fn dateValue(&self) -> Option>; #[cfg(feature = "NSURL")] #[unsafe(method(fileURLValue))] #[unsafe(method_family = none)] pub fn fileURLValue(&self) -> Option>; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(eventClass))] #[unsafe(method_family = none)] pub fn eventClass(&self) -> AEEventClass; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(eventID))] #[unsafe(method_family = none)] pub fn eventID(&self) -> AEEventID; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(returnID))] #[unsafe(method_family = none)] pub fn returnID(&self) -> AEReturnID; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(transactionID))] #[unsafe(method_family = none)] pub fn transactionID(&self) -> AETransactionID; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(setParamDescriptor:forKeyword:))] #[unsafe(method_family = none)] pub fn setParamDescriptor_forKeyword( &self, descriptor: &NSAppleEventDescriptor, keyword: AEKeyword, ); #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(paramDescriptorForKeyword:))] #[unsafe(method_family = none)] pub fn paramDescriptorForKeyword( &self, keyword: AEKeyword, ) -> Option>; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(removeParamDescriptorWithKeyword:))] #[unsafe(method_family = none)] pub fn removeParamDescriptorWithKeyword(&self, keyword: AEKeyword); #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(setAttributeDescriptor:forKeyword:))] #[unsafe(method_family = none)] pub fn setAttributeDescriptor_forKeyword( &self, descriptor: &NSAppleEventDescriptor, keyword: AEKeyword, ); #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(attributeDescriptorForKeyword:))] #[unsafe(method_family = none)] pub fn attributeDescriptorForKeyword( &self, keyword: AEKeyword, ) -> Option>; #[cfg(all(feature = "NSDate", feature = "NSError"))] #[unsafe(method(sendEventWithOptions:timeout:error:_))] #[unsafe(method_family = none)] pub fn sendEventWithOptions_timeout_error( &self, send_options: NSAppleEventSendOptions, timeout_in_seconds: NSTimeInterval, ) -> Result, Retained>; #[unsafe(method(isRecordDescriptor))] #[unsafe(method_family = none)] pub fn isRecordDescriptor(&self) -> bool; #[unsafe(method(numberOfItems))] #[unsafe(method_family = none)] pub fn numberOfItems(&self) -> NSInteger; #[unsafe(method(insertDescriptor:atIndex:))] #[unsafe(method_family = none)] pub fn insertDescriptor_atIndex( &self, descriptor: &NSAppleEventDescriptor, index: NSInteger, ); #[unsafe(method(descriptorAtIndex:))] #[unsafe(method_family = none)] pub fn descriptorAtIndex( &self, index: NSInteger, ) -> Option>; #[unsafe(method(removeDescriptorAtIndex:))] #[unsafe(method_family = none)] pub fn removeDescriptorAtIndex(&self, index: NSInteger); #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(setDescriptor:forKeyword:))] #[unsafe(method_family = none)] pub fn setDescriptor_forKeyword( &self, descriptor: &NSAppleEventDescriptor, keyword: AEKeyword, ); #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(descriptorForKeyword:))] #[unsafe(method_family = none)] pub fn descriptorForKeyword( &self, keyword: AEKeyword, ) -> Option>; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(removeDescriptorWithKeyword:))] #[unsafe(method_family = none)] pub fn removeDescriptorWithKeyword(&self, keyword: AEKeyword); #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(keywordForDescriptorAtIndex:))] #[unsafe(method_family = none)] pub fn keywordForDescriptorAtIndex(&self, index: NSInteger) -> AEKeyword; #[cfg(feature = "objc2-core-services")] #[cfg(target_vendor = "apple")] #[unsafe(method(coerceToDescriptorType:))] #[unsafe(method_family = none)] pub fn coerceToDescriptorType( &self, descriptor_type: DescType, ) -> Option>; ); } /// Methods declared on superclass `NSObject`. impl NSAppleEventDescriptor { extern_methods!( #[unsafe(method(init))] #[unsafe(method_family = init)] pub fn init(this: Allocated) -> Retained; #[unsafe(method(new))] #[unsafe(method_family = new)] pub fn new() -> Retained; ); } impl DefaultRetained for NSAppleEventDescriptor { #[inline] fn default_retained() -> Retained { Self::new() } }