objc2-core-location 0.3.2

Bindings to the CoreLocation framework
Documentation
//! 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 objc2_foundation::*;

use crate::*;

/// [Apple's documentation](https://developer.apple.com/documentation/corelocation/clregionstate?language=objc)
// NS_CLOSED_ENUM
#[repr(isize)] // NSInteger
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum CLRegionState {
    #[doc(alias = "CLRegionStateUnknown")]
    Unknown = 0,
    #[doc(alias = "CLRegionStateInside")]
    Inside = 1,
    #[doc(alias = "CLRegionStateOutside")]
    Outside = 2,
}

unsafe impl Encode for CLRegionState {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for CLRegionState {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

/// [Apple's documentation](https://developer.apple.com/documentation/corelocation/clproximity?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct CLProximity(pub NSInteger);
impl CLProximity {
    #[doc(alias = "CLProximityUnknown")]
    pub const Unknown: Self = Self(0);
    #[doc(alias = "CLProximityImmediate")]
    pub const Immediate: Self = Self(1);
    #[doc(alias = "CLProximityNear")]
    pub const Near: Self = Self(2);
    #[doc(alias = "CLProximityFar")]
    pub const Far: Self = Self(3);
}

unsafe impl Encode for CLProximity {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for CLProximity {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/corelocation/clregion?language=objc)
    #[unsafe(super(NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct CLRegion;
);

extern_conformance!(
    unsafe impl NSCoding for CLRegion {}
);

extern_conformance!(
    unsafe impl NSCopying for CLRegion {}
);

unsafe impl CopyingHelper for CLRegion {
    type Result = Self;
}

extern_conformance!(
    unsafe impl NSObjectProtocol for CLRegion {}
);

extern_conformance!(
    unsafe impl NSSecureCoding for CLRegion {}
);

impl CLRegion {
    extern_methods!(
        #[cfg(feature = "CLLocation")]
        #[deprecated = "Please see CLCircularRegion"]
        #[unsafe(method(initCircularRegionWithCenter:radius:identifier:))]
        #[unsafe(method_family = init)]
        pub unsafe fn initCircularRegionWithCenter_radius_identifier(
            this: Allocated<Self>,
            center: CLLocationCoordinate2D,
            radius: CLLocationDistance,
            identifier: &NSString,
        ) -> Retained<Self>;

        #[cfg(feature = "CLLocation")]
        #[deprecated = "Please see CLCircularRegion"]
        #[unsafe(method(center))]
        #[unsafe(method_family = none)]
        pub unsafe fn center(&self) -> CLLocationCoordinate2D;

        #[cfg(feature = "CLLocation")]
        #[deprecated = "Please see CLCircularRegion"]
        #[unsafe(method(radius))]
        #[unsafe(method_family = none)]
        pub unsafe fn radius(&self) -> CLLocationDistance;

        #[unsafe(method(identifier))]
        #[unsafe(method_family = none)]
        pub unsafe fn identifier(&self) -> Retained<NSString>;

        #[unsafe(method(notifyOnEntry))]
        #[unsafe(method_family = none)]
        pub unsafe fn notifyOnEntry(&self) -> bool;

        /// Setter for [`notifyOnEntry`][Self::notifyOnEntry].
        #[unsafe(method(setNotifyOnEntry:))]
        #[unsafe(method_family = none)]
        pub unsafe fn setNotifyOnEntry(&self, notify_on_entry: bool);

        #[unsafe(method(notifyOnExit))]
        #[unsafe(method_family = none)]
        pub unsafe fn notifyOnExit(&self) -> bool;

        /// Setter for [`notifyOnExit`][Self::notifyOnExit].
        #[unsafe(method(setNotifyOnExit:))]
        #[unsafe(method_family = none)]
        pub unsafe fn setNotifyOnExit(&self, notify_on_exit: bool);

        #[cfg(feature = "CLLocation")]
        #[deprecated = "Please see CLCircularRegion"]
        #[unsafe(method(containsCoordinate:))]
        #[unsafe(method_family = none)]
        pub unsafe fn containsCoordinate(&self, coordinate: CLLocationCoordinate2D) -> bool;
    );
}

/// Methods declared on superclass `NSObject`.
impl CLRegion {
    extern_methods!(
        #[unsafe(method(init))]
        #[unsafe(method_family = init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;

        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub unsafe fn new() -> Retained<Self>;
    );
}