use crate::common::*;
use crate::AppKit::*;
use crate::Contacts::*;
use crate::CoreLocation::*;
use crate::Foundation::*;
use crate::MapKit::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "MapKit_MKCompassButton")]
pub struct MKCompassButton;
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl ClassType for MKCompassButton {
#[inherits(NSResponder, NSObject)]
type Super = NSView;
type Mutability = MainThreadOnly;
}
);
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSAccessibility for MKCompassButton {}
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSAccessibilityElementProtocol for MKCompassButton {}
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSAnimatablePropertyContainer for MKCompassButton {}
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSAppearanceCustomization for MKCompassButton {}
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSCoding for MKCompassButton {}
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSDraggingDestination for MKCompassButton {}
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSObjectProtocol for MKCompassButton {}
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl NSUserInterfaceItemIdentification for MKCompassButton {}
extern_methods!(
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl MKCompassButton {
#[cfg(feature = "MapKit_MKMapView")]
#[method_id(@__retain_semantics Other compassButtonWithMapView:)]
pub unsafe fn compassButtonWithMapView(map_view: Option<&MKMapView>) -> Id<Self>;
#[cfg(feature = "MapKit_MKMapView")]
#[method_id(@__retain_semantics Other mapView)]
pub unsafe fn mapView(&self) -> Option<Id<MKMapView>>;
#[cfg(feature = "MapKit_MKMapView")]
#[method(setMapView:)]
pub unsafe fn setMapView(&self, map_view: Option<&MKMapView>);
#[method(compassVisibility)]
pub unsafe fn compassVisibility(&self) -> MKFeatureVisibility;
#[method(setCompassVisibility:)]
pub unsafe fn setCompassVisibility(&self, compass_visibility: MKFeatureVisibility);
}
);
extern_methods!(
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl MKCompassButton {
#[method_id(@__retain_semantics Init initWithFrame:)]
pub unsafe fn initWithFrame(this: Allocated<Self>, frame_rect: NSRect) -> Id<Self>;
#[cfg(feature = "Foundation_NSCoder")]
#[method_id(@__retain_semantics Init initWithCoder:)]
pub unsafe fn initWithCoder(this: Allocated<Self>, coder: &NSCoder) -> Option<Id<Self>>;
}
);
extern_methods!(
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl MKCompassButton {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
}
);
extern_methods!(
#[cfg(feature = "MapKit_MKCompassButton")]
unsafe impl MKCompassButton {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Id<Self>;
}
);