pub trait NSVisualEffectView: Sized {
Show 14 methods // Required methods unsafe fn init(self) -> id; unsafe fn initWithFrame_(self, frameRect: NSRect) -> id; unsafe fn bounds(self) -> NSRect; unsafe fn frame(self) -> NSRect; unsafe fn setFrameSize(self, frameSize: NSSize); unsafe fn setFrameOrigin(self, frameOrigin: NSPoint); unsafe fn superview(self) -> id; unsafe fn removeFromSuperview(self); unsafe fn isEmphasized(self) -> BOOL; unsafe fn setEmphasized_(self, emphasized: BOOL); unsafe fn setMaterial_(self, material: NSVisualEffectMaterial); unsafe fn setState_(self, state: NSVisualEffectState); unsafe fn setBlendingMode_(self, mode: NSVisualEffectBlendingMode); // Provided method unsafe fn alloc(_: Self) -> id { ... }
}

Required Methods§

source

unsafe fn init(self) -> id

source

unsafe fn initWithFrame_(self, frameRect: NSRect) -> id

source

unsafe fn bounds(self) -> NSRect

source

unsafe fn frame(self) -> NSRect

source

unsafe fn setFrameSize(self, frameSize: NSSize)

source

unsafe fn setFrameOrigin(self, frameOrigin: NSPoint)

source

unsafe fn superview(self) -> id

source

unsafe fn removeFromSuperview(self)

source

unsafe fn isEmphasized(self) -> BOOL

source

unsafe fn setEmphasized_(self, emphasized: BOOL)

source

unsafe fn setMaterial_(self, material: NSVisualEffectMaterial)

source

unsafe fn setState_(self, state: NSVisualEffectState)

source

unsafe fn setBlendingMode_(self, mode: NSVisualEffectBlendingMode)

Provided Methods§

source

unsafe fn alloc(_: Self) -> id

Implementors§