Up

NSTabView

Authors

Michael Hanni (mhanni@sprintmail.com)
The tabular view class

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


Contents -

  1. Software documentation for the NSTabView class
  2. Software documentation for the NSObject(NSTabViewDelegate) informal protocol

Software documentation for the NSTabView class

NSTabView : NSView

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

Description forthcoming.


Instance Variables

Method summary

addTabViewItem: 

- (void) addTabViewItem: (NSTabViewItem*)tabViewItem;

Description forthcoming.


allowsTruncatedLabels 

- (BOOL) allowsTruncatedLabels;

Description forthcoming.


contentRect 

- (NSRect) contentRect;

Description forthcoming.


controlSize 

- (NSControlSize) controlSize;

Description forthcoming.


controlTint 

- (NSControlTint) controlTint;

Description forthcoming.


delegate 

- (id) delegate;

Description forthcoming.


drawsBackground 

- (BOOL) drawsBackground;

Description forthcoming.


font 

- (NSFont*) font;

Description forthcoming.


indexOfTabViewItem: 

- (int) indexOfTabViewItem: (NSTabViewItem*)tabViewItem;

Description forthcoming.


indexOfTabViewItemWithIdentifier: 

- (int) indexOfTabViewItemWithIdentifier: (id)identifier;

Description forthcoming.


insertTabViewItem: atIndex: 

- (void) insertTabViewItem: (NSTabViewItem*)tabViewItem atIndex: (int)index;

Description forthcoming.


minimumSize 

- (NSSize) minimumSize;

Description forthcoming.


numberOfTabViewItems 

- (int) numberOfTabViewItems;

Description forthcoming.


removeTabViewItem: 

- (void) removeTabViewItem: (NSTabViewItem*)tabViewItem;

Description forthcoming.


selectFirstTabViewItem: 

- (void) selectFirstTabViewItem: (id)sender;

Description forthcoming.


selectLastTabViewItem: 

- (void) selectLastTabViewItem: (id)sender;

Description forthcoming.


selectNextTabViewItem: 

- (void) selectNextTabViewItem: (id)sender;

Description forthcoming.


selectPreviousTabViewItem: 

- (void) selectPreviousTabViewItem: (id)sender;

Description forthcoming.


selectTabViewItem: 

- (void) selectTabViewItem: (NSTabViewItem*)tabViewItem;

Description forthcoming.


selectTabViewItemAtIndex: 

- (void) selectTabViewItemAtIndex: (int)index;

Description forthcoming.


selectTabViewItemWithIdentifier: 

- (void) selectTabViewItemWithIdentifier: (id)identifier;

Description forthcoming.


selectedTabViewItem 

- (NSTabViewItem*) selectedTabViewItem;

Description forthcoming.


setAllowsTruncatedLabels: 

- (void) setAllowsTruncatedLabels: (BOOL)allowTruncatedLabels;

Description forthcoming.


setControlSize: 

- (void) setControlSize: (NSControlSize)controlSize;

Not implemented.


setControlTint: 

- (void) setControlTint: (NSControlTint)controlTint;

Not implemented.


setDelegate: 

- (void) setDelegate: (id)anObject;

Description forthcoming.


setDrawsBackground: 

- (void) setDrawsBackground: (BOOL)flag;

Description forthcoming.


setFont: 

- (void) setFont: (NSFont*)font;

Description forthcoming.


setTabViewType: 

- (void) setTabViewType: (NSTabViewType)tabViewType;

Description forthcoming.


tabViewItemAtIndex: 

- (NSTabViewItem*) tabViewItemAtIndex: (int)index;

Description forthcoming.


tabViewItemAtPoint: 

- (NSTabViewItem*) tabViewItemAtPoint: (NSPoint)point;

Description forthcoming.


tabViewItems 

- (NSArray*) tabViewItems;

Description forthcoming.


tabViewType 

- (NSTabViewType) tabViewType;

Description forthcoming.


takeSelectedTabViewItemFromSender: 

- (void) takeSelectedTabViewItemFromSender: (id)sender;

Description forthcoming.




Instance Variables for NSTabView Class

_delegate

@protected id _delegate;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_draws_background

@protected BOOL _draws_background;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_font

@protected NSFont* _font;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_items

@protected NSMutableArray* _items;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_selected

@protected NSTabViewItem* _selected;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_selected_item

@protected int _selected_item;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_truncated_label

@protected BOOL _truncated_label;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_type

@protected NSTabViewType _type;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Software documentation for the NSObject(NSTabViewDelegate) informal protocol

NSObject(NSTabViewDelegate)

Declared in:
AppKit/NSTabView.h
Standards:

Description forthcoming.

Method summary

tabView: didSelectTabViewItem: 

- (void) tabView: (NSTabView*)tabView didSelectTabViewItem: (NSTabViewItem*)tabViewItem;

Description forthcoming.


tabView: shouldSelectTabViewItem: 

- (BOOL) tabView: (NSTabView*)tabView shouldSelectTabViewItem: (NSTabViewItem*)tabViewItem;

Description forthcoming.


tabView: willSelectTabViewItem: 

- (void) tabView: (NSTabView*)tabView willSelectTabViewItem: (NSTabViewItem*)tabViewItem;

Description forthcoming.


tabViewDidChangeNumberOfTabViewItems: 

- (void) tabViewDidChangeNumberOfTabViewItems: (NSTabView*)TabView;

Description forthcoming.



Up