pub trait NSTabViewItem: Sized {
Show 19 methods // Required methods unsafe fn initWithIdentifier_(self, identifier: id) -> id; unsafe fn drawLabel_inRect_( self, shouldTruncateLabel: BOOL, labelRect: NSRect ); unsafe fn label(self) -> id; unsafe fn setLabel_(self, label: id); unsafe fn sizeOfLabel_(self, computeMin: BOOL); unsafe fn tabState(self) -> NSTabState; unsafe fn identifier(self) -> id; unsafe fn setIdentifier_(self, identifier: id); unsafe fn color(self) -> id; unsafe fn setColor_(self, color: id); unsafe fn view(self) -> id; unsafe fn setView_(self, view: id); unsafe fn initialFirstResponder(self) -> id; unsafe fn setInitialFirstResponder_(self, initialFirstResponder: id); unsafe fn tabView(self) -> id; unsafe fn tooltip(self) -> id; unsafe fn setToolTip_(self, toolTip: id); // Provided methods unsafe fn alloc(_: Self) -> id { ... } unsafe fn new(_: Self) -> id { ... }
}

Required Methods§

source

unsafe fn initWithIdentifier_(self, identifier: id) -> id

source

unsafe fn drawLabel_inRect_(self, shouldTruncateLabel: BOOL, labelRect: NSRect)

source

unsafe fn label(self) -> id

source

unsafe fn setLabel_(self, label: id)

source

unsafe fn sizeOfLabel_(self, computeMin: BOOL)

source

unsafe fn tabState(self) -> NSTabState

source

unsafe fn identifier(self) -> id

source

unsafe fn setIdentifier_(self, identifier: id)

source

unsafe fn color(self) -> id

source

unsafe fn setColor_(self, color: id)

source

unsafe fn view(self) -> id

source

unsafe fn setView_(self, view: id)

source

unsafe fn initialFirstResponder(self) -> id

source

unsafe fn setInitialFirstResponder_(self, initialFirstResponder: id)

source

unsafe fn tabView(self) -> id

source

unsafe fn tooltip(self) -> id

source

unsafe fn setToolTip_(self, toolTip: id)

Provided Methods§

source

unsafe fn alloc(_: Self) -> id

source

unsafe fn new(_: Self) -> id

Implementors§