//! 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::*; use crate::*; extern_class!( /// [Apple's documentation](https://developer.apple.com/documentation/foundation/nscalendardate?language=objc) #[unsafe(super(NSDate, NSObject))] #[derive(Debug, PartialEq, Eq, Hash)] #[cfg(feature = "NSDate")] #[deprecated = "Use NSCalendar and NSDateComponents and NSDateFormatter instead"] pub struct NSCalendarDate; ); #[cfg(all(feature = "NSDate", feature = "NSObject"))] extern_conformance!( unsafe impl NSCoding for NSCalendarDate {} ); #[cfg(all(feature = "NSDate", feature = "NSObject"))] extern_conformance!( unsafe impl NSCopying for NSCalendarDate {} ); #[cfg(all(feature = "NSDate", feature = "NSObject"))] unsafe impl CopyingHelper for NSCalendarDate { type Result = Self; } #[cfg(feature = "NSDate")] extern_conformance!( unsafe impl NSObjectProtocol for NSCalendarDate {} ); #[cfg(all(feature = "NSDate", feature = "NSObject"))] extern_conformance!( unsafe impl NSSecureCoding for NSCalendarDate {} ); #[cfg(feature = "NSDate")] impl NSCalendarDate { extern_methods!( #[deprecated = "Use NSCalendar instead"] #[unsafe(method(calendarDate))] #[unsafe(method_family = none)] pub fn calendarDate() -> Retained; #[cfg(feature = "NSString")] /// # Safety /// /// `locale` should be of the correct type. #[deprecated = "Use NSDateFormatter instead"] #[unsafe(method(dateWithString:calendarFormat:locale:))] #[unsafe(method_family = none)] pub unsafe fn dateWithString_calendarFormat_locale( description: &NSString, format: &NSString, locale: Option<&AnyObject>, ) -> Option>; #[cfg(feature = "NSString")] #[deprecated = "Use NSDateFormatter instead"] #[unsafe(method(dateWithString:calendarFormat:))] #[unsafe(method_family = none)] pub fn dateWithString_calendarFormat( description: &NSString, format: &NSString, ) -> Option>; #[cfg(feature = "NSTimeZone")] #[deprecated = "Use NSCalendar and NSDateComponents instead"] #[unsafe(method(dateWithYear:month:day:hour:minute:second:timeZone:))] #[unsafe(method_family = none)] pub fn dateWithYear_month_day_hour_minute_second_timeZone( year: NSInteger, month: NSUInteger, day: NSUInteger, hour: NSUInteger, minute: NSUInteger, second: NSUInteger, a_time_zone: Option<&NSTimeZone>, ) -> Retained; #[deprecated = "Use NSCalendar instead"] #[unsafe(method(dateByAddingYears:months:days:hours:minutes:seconds:))] #[unsafe(method_family = none)] pub fn dateByAddingYears_months_days_hours_minutes_seconds( &self, year: NSInteger, month: NSInteger, day: NSInteger, hour: NSInteger, minute: NSInteger, second: NSInteger, ) -> Retained; #[deprecated] #[unsafe(method(dayOfCommonEra))] #[unsafe(method_family = none)] pub fn dayOfCommonEra(&self) -> NSInteger; #[deprecated] #[unsafe(method(dayOfMonth))] #[unsafe(method_family = none)] pub fn dayOfMonth(&self) -> NSInteger; #[deprecated] #[unsafe(method(dayOfWeek))] #[unsafe(method_family = none)] pub fn dayOfWeek(&self) -> NSInteger; #[deprecated] #[unsafe(method(dayOfYear))] #[unsafe(method_family = none)] pub fn dayOfYear(&self) -> NSInteger; #[deprecated] #[unsafe(method(hourOfDay))] #[unsafe(method_family = none)] pub fn hourOfDay(&self) -> NSInteger; #[deprecated] #[unsafe(method(minuteOfHour))] #[unsafe(method_family = none)] pub fn minuteOfHour(&self) -> NSInteger; #[deprecated] #[unsafe(method(monthOfYear))] #[unsafe(method_family = none)] pub fn monthOfYear(&self) -> NSInteger; #[deprecated] #[unsafe(method(secondOfMinute))] #[unsafe(method_family = none)] pub fn secondOfMinute(&self) -> NSInteger; #[deprecated] #[unsafe(method(yearOfCommonEra))] #[unsafe(method_family = none)] pub fn yearOfCommonEra(&self) -> NSInteger; #[cfg(feature = "NSString")] #[deprecated] #[unsafe(method(calendarFormat))] #[unsafe(method_family = none)] pub fn calendarFormat(&self) -> Retained; #[cfg(feature = "NSString")] /// # Safety /// /// `locale` should be of the correct type. #[deprecated] #[unsafe(method(descriptionWithCalendarFormat:locale:))] #[unsafe(method_family = none)] pub unsafe fn descriptionWithCalendarFormat_locale( &self, format: &NSString, locale: Option<&AnyObject>, ) -> Retained; #[cfg(feature = "NSString")] #[deprecated] #[unsafe(method(descriptionWithCalendarFormat:))] #[unsafe(method_family = none)] pub fn descriptionWithCalendarFormat(&self, format: &NSString) -> Retained; #[cfg(feature = "NSString")] /// # Safety /// /// `locale` should be of the correct type. #[deprecated] #[unsafe(method(descriptionWithLocale:))] #[unsafe(method_family = none)] pub unsafe fn descriptionWithLocale( &self, locale: Option<&AnyObject>, ) -> Retained; #[cfg(feature = "NSTimeZone")] #[deprecated] #[unsafe(method(timeZone))] #[unsafe(method_family = none)] pub fn timeZone(&self) -> Retained; #[cfg(feature = "NSString")] /// # Safety /// /// `locale` should be of the correct type. #[deprecated = "Use NSDateFormatter instead"] #[unsafe(method(initWithString:calendarFormat:locale:))] #[unsafe(method_family = init)] pub unsafe fn initWithString_calendarFormat_locale( this: Allocated, description: &NSString, format: &NSString, locale: Option<&AnyObject>, ) -> Option>; #[cfg(feature = "NSString")] #[deprecated = "Use NSDateFormatter instead"] #[unsafe(method(initWithString:calendarFormat:))] #[unsafe(method_family = init)] pub fn initWithString_calendarFormat( this: Allocated, description: &NSString, format: &NSString, ) -> Option>; #[cfg(feature = "NSString")] #[deprecated = "Use NSDateFormatter instead"] #[unsafe(method(initWithString:))] #[unsafe(method_family = init)] pub fn initWithString( this: Allocated, description: &NSString, ) -> Option>; #[cfg(feature = "NSTimeZone")] #[deprecated = "Use NSCalendar and NSDateComponents instead"] #[unsafe(method(initWithYear:month:day:hour:minute:second:timeZone:))] #[unsafe(method_family = init)] pub fn initWithYear_month_day_hour_minute_second_timeZone( this: Allocated, year: NSInteger, month: NSUInteger, day: NSUInteger, hour: NSUInteger, minute: NSUInteger, second: NSUInteger, a_time_zone: Option<&NSTimeZone>, ) -> Retained; #[cfg(feature = "NSString")] #[deprecated] #[unsafe(method(setCalendarFormat:))] #[unsafe(method_family = none)] pub fn setCalendarFormat(&self, format: Option<&NSString>); #[cfg(feature = "NSTimeZone")] #[deprecated] #[unsafe(method(setTimeZone:))] #[unsafe(method_family = none)] pub fn setTimeZone(&self, a_time_zone: Option<&NSTimeZone>); /// # Safety /// /// - `yp` must be a valid pointer or null. /// - `mop` must be a valid pointer or null. /// - `dp` must be a valid pointer or null. /// - `hp` must be a valid pointer or null. /// - `mip` must be a valid pointer or null. /// - `sp` must be a valid pointer or null. #[deprecated] #[unsafe(method(years:months:days:hours:minutes:seconds:sinceDate:))] #[unsafe(method_family = none)] pub unsafe fn years_months_days_hours_minutes_seconds_sinceDate( &self, yp: *mut NSInteger, mop: *mut NSInteger, dp: *mut NSInteger, hp: *mut NSInteger, mip: *mut NSInteger, sp: *mut NSInteger, date: &NSCalendarDate, ); #[deprecated] #[unsafe(method(distantFuture))] #[unsafe(method_family = none)] pub fn distantFuture() -> Retained; #[deprecated] #[unsafe(method(distantPast))] #[unsafe(method_family = none)] pub fn distantPast() -> Retained; ); } /// Methods declared on superclass `NSDate`. #[cfg(feature = "NSDate")] impl NSCalendarDate { extern_methods!( #[unsafe(method(init))] #[unsafe(method_family = init)] pub fn init(this: Allocated) -> Retained; #[unsafe(method(initWithTimeIntervalSinceReferenceDate:))] #[unsafe(method_family = init)] pub fn initWithTimeIntervalSinceReferenceDate( this: Allocated, ti: NSTimeInterval, ) -> Retained; #[cfg(feature = "NSCoder")] /// # Safety /// /// `coder` possibly has further requirements. #[unsafe(method(initWithCoder:))] #[unsafe(method_family = init)] pub unsafe fn initWithCoder( this: Allocated, coder: &NSCoder, ) -> Option>; ); } /// Methods declared on superclass `NSObject`. #[cfg(feature = "NSDate")] impl NSCalendarDate { extern_methods!( #[unsafe(method(new))] #[unsafe(method_family = new)] pub fn new() -> Retained; ); } #[cfg(feature = "NSDate")] impl DefaultRetained for NSCalendarDate { #[inline] fn default_retained() -> Retained { Self::new() } } /// NSCalendarDateExtras. #[cfg(feature = "NSDate")] impl NSDate { extern_methods!( #[cfg(feature = "NSString")] /// # Safety /// /// `locale` should be of the correct type. #[deprecated = "Create an NSDateFormatter with `init` and set the dateFormat property instead."] #[unsafe(method(dateWithNaturalLanguageString:locale:))] #[unsafe(method_family = none)] pub unsafe fn dateWithNaturalLanguageString_locale( string: &NSString, locale: Option<&AnyObject>, ) -> Option>; #[cfg(feature = "NSString")] #[deprecated = "Create an NSDateFormatter with `init` and set the dateFormat property instead."] #[unsafe(method(dateWithNaturalLanguageString:))] #[unsafe(method_family = none)] pub fn dateWithNaturalLanguageString(string: &NSString) -> Option>; #[cfg(feature = "NSString")] #[deprecated = "Use NSDateFormatter instead"] #[unsafe(method(dateWithString:))] #[unsafe(method_family = none)] pub fn dateWithString(a_string: &NSString) -> Retained; #[cfg(all(feature = "NSString", feature = "NSTimeZone"))] #[deprecated] #[unsafe(method(dateWithCalendarFormat:timeZone:))] #[unsafe(method_family = none)] pub fn dateWithCalendarFormat_timeZone( &self, format: Option<&NSString>, a_time_zone: Option<&NSTimeZone>, ) -> Retained; #[cfg(all(feature = "NSString", feature = "NSTimeZone"))] /// # Safety /// /// `locale` should be of the correct type. #[deprecated] #[unsafe(method(descriptionWithCalendarFormat:timeZone:locale:))] #[unsafe(method_family = none)] pub unsafe fn descriptionWithCalendarFormat_timeZone_locale( &self, format: Option<&NSString>, a_time_zone: Option<&NSTimeZone>, locale: Option<&AnyObject>, ) -> Option>; #[cfg(feature = "NSString")] #[deprecated = "Use NSDateFormatter instead"] #[unsafe(method(initWithString:))] #[unsafe(method_family = init)] pub fn initWithString( this: Allocated, description: &NSString, ) -> Option>; ); }