use crate::common::*;
use crate::AppKit::*;
use crate::CoreData::*;
use crate::Foundation::*;
ns_options!(
#[underlying(NSUInteger)]
pub enum NSTrackingAreaOptions {
NSTrackingMouseEnteredAndExited = 0x01,
NSTrackingMouseMoved = 0x02,
NSTrackingCursorUpdate = 0x04,
NSTrackingActiveWhenFirstResponder = 0x10,
NSTrackingActiveInKeyWindow = 0x20,
NSTrackingActiveInActiveApp = 0x40,
NSTrackingActiveAlways = 0x80,
NSTrackingAssumeInside = 0x100,
NSTrackingInVisibleRect = 0x200,
NSTrackingEnabledDuringMouseDrag = 0x400,
}
);
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "AppKit_NSTrackingArea")]
pub struct NSTrackingArea;
#[cfg(feature = "AppKit_NSTrackingArea")]
unsafe impl ClassType for NSTrackingArea {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "AppKit_NSTrackingArea")]
unsafe impl NSCoding for NSTrackingArea {}
#[cfg(feature = "AppKit_NSTrackingArea")]
unsafe impl NSCopying for NSTrackingArea {}
#[cfg(feature = "AppKit_NSTrackingArea")]
unsafe impl NSObjectProtocol for NSTrackingArea {}
extern_methods!(
#[cfg(feature = "AppKit_NSTrackingArea")]
unsafe impl NSTrackingArea {
#[cfg(feature = "Foundation_NSDictionary")]
#[method_id(@__retain_semantics Init initWithRect:options:owner:userInfo:)]
pub unsafe fn initWithRect_options_owner_userInfo(
this: Allocated<Self>,
rect: NSRect,
options: NSTrackingAreaOptions,
owner: Option<&AnyObject>,
user_info: Option<&NSDictionary<AnyObject, AnyObject>>,
) -> Id<Self>;
#[method(rect)]
pub unsafe fn rect(&self) -> NSRect;
#[method(options)]
pub unsafe fn options(&self) -> NSTrackingAreaOptions;
#[method_id(@__retain_semantics Other owner)]
pub unsafe fn owner(&self) -> Option<Id<AnyObject>>;
#[cfg(feature = "Foundation_NSDictionary")]
#[method_id(@__retain_semantics Other userInfo)]
pub unsafe fn userInfo(&self) -> Option<Id<NSDictionary<AnyObject, AnyObject>>>;
}
);
extern_methods!(
#[cfg(feature = "AppKit_NSTrackingArea")]
unsafe impl NSTrackingArea {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);