Up

NSTabViewItem

Authors

Michael Hanni (mhanni@sprintmail.com)

Copyright: (C) 2000 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSTabViewItem class
  2. Software documentation for the NSTabViewItem(GNUstep) category

Software documentation for the NSTabViewItem class

NSTabViewItem : NSObject

Declared in:
AppKit/NSTabViewItem.h
Conforms to:
NSCoding
Standards:

Description forthcoming.



Instance Variables for NSTabViewItem Class

_color

@private NSColor* _color;

Description forthcoming.


_first_responder

@private NSView* _first_responder;

Description forthcoming.


_ident

@private id _ident;

Description forthcoming.


_label

@private NSString* _label;

Description forthcoming.


_rect

@private NSRect _rect;

Description forthcoming.


_state

@private NSTabState _state;

Description forthcoming.


_tabview

@private NSTabView* _tabview;

Description forthcoming.


_view

@private NSView* _view;

Description forthcoming.





Method summary

color 

- (NSColor*) color;

Description forthcoming.


drawLabel: inRect: 

- (void) drawLabel: (BOOL)shouldTruncateLabel inRect: (NSRect)tabRect;

Description forthcoming.


identifier 

- (id) identifier;

Description forthcoming.


initWithIdentifier: 

- (id) initWithIdentifier: (id)identifier;

Description forthcoming.


initialFirstResponder 

- (id) initialFirstResponder;

Description forthcoming.


label 

- (NSString*) label;

Description forthcoming.


setColor: 

- (void) setColor: (NSColor*)color;

Description forthcoming.


setIdentifier: 

- (void) setIdentifier: (id)identifier;

Description forthcoming.


setInitialFirstResponder: 

- (void) setInitialFirstResponder: (NSView*)view;

Description forthcoming.


setLabel: 

- (void) setLabel: (NSString*)label;

Description forthcoming.


setView: 

- (void) setView: (NSView*)view;

Description forthcoming.


sizeOfLabel: 

- (NSSize) sizeOfLabel: (BOOL)shouldTruncateLabel;

Description forthcoming.


tabState 

- (NSTabState) tabState;

Description forthcoming.


tabView 

- (NSTabView*) tabView;

Description forthcoming.


view 

- (NSView*) view;

Description forthcoming.


Software documentation for the NSTabViewItem(GNUstep) category

NSTabViewItem(GNUstep)

Declared in:
AppKit/NSTabViewItem.h
Standards:

Description forthcoming.

Method summary

_setTabState: 

- (void) _setTabState: (NSTabState)tabState;

Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.


_setTabView: 

- (void) _setTabView: (NSTabView*)tabView;

Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.


_tabRect 

- (NSRect) _tabRect;

Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.


_truncatedLabel 

- (NSString*) _truncatedLabel;

Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.



Up