Up
Authors
- Michael Hanni (
mhanni@sprintmail.com
)
-
The tabular view class
Copyright: (C) 1999,2000 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSTabView.h
- Conforms to:
- NSCoding
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
- (void)
addTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (BOOL)
allowsTruncatedLabels;
Availability: OpenStep
Description forthcoming.
- (NSRect)
contentRect;
Availability: OpenStep
Description forthcoming.
- (
NSControlSize)
controlSize;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (
NSControlTint)
controlTint;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (id)
delegate;
Availability: OpenStep
Description forthcoming.
- (BOOL)
drawsBackground;
Availability: OpenStep
Description forthcoming.
- (
NSFont*)
font;
Availability: OpenStep
Description forthcoming.
- (int)
indexOfTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (int)
indexOfTabViewItemWithIdentifier: (id)identifier;
Availability: OpenStep
Description forthcoming.
- (void)
insertTabViewItem: (
NSTabViewItem*)tabViewItem
atIndex: (int)index;
Availability: OpenStep
Description forthcoming.
- (NSSize)
minimumSize;
Availability: OpenStep
Description forthcoming.
- (int)
numberOfTabViewItems;
Availability: OpenStep
Description forthcoming.
- (void)
removeTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (void)
selectFirstTabViewItem: (id)sender;
Availability: OpenStep
Description forthcoming.
- (void)
selectLastTabViewItem: (id)sender;
Availability: OpenStep
Description forthcoming.
- (void)
selectNextTabViewItem: (id)sender;
Availability: OpenStep
Description forthcoming.
- (void)
selectPreviousTabViewItem: (id)sender;
Availability: OpenStep
Description forthcoming.
- (void)
selectTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (void)
selectTabViewItemAtIndex: (int)index;
Availability: OpenStep
Description forthcoming.
- (void)
selectTabViewItemWithIdentifier: (id)identifier;
Availability: OpenStep
Description forthcoming.
- (
NSTabViewItem*)
selectedTabViewItem;
Availability: OpenStep
Description forthcoming.
- (void)
setAllowsTruncatedLabels: (BOOL)allowTruncatedLabels;
Availability: OpenStep
Description forthcoming.
- (void)
setControlSize: (
NSControlSize)controlSize;
Availability: MacOS-X 10.0.0
Not implemented.
- (void)
setControlTint: (
NSControlTint)controlTint;
Availability: MacOS-X 10.0.0
Not implemented.
- (void)
setDelegate: (id)anObject;
Availability: OpenStep
Description forthcoming.
- (void)
setDrawsBackground: (BOOL)flag;
Availability: OpenStep
Description forthcoming.
- (void)
setFont: (
NSFont*)font;
Availability: OpenStep
Description forthcoming.
- (void)
setTabViewType: (
NSTabViewType)tabViewType;
Availability: OpenStep
Description forthcoming.
- (
NSTabViewItem*)
tabViewItemAtIndex: (int)index;
Availability: OpenStep
Description forthcoming.
- (
NSTabViewItem*)
tabViewItemAtPoint: (NSPoint)point;
Availability: OpenStep
Description forthcoming.
- (NSArray*)
tabViewItems;
Availability: OpenStep
Description forthcoming.
- (
NSTabViewType)
tabViewType;
Availability: OpenStep
Description forthcoming.
- (void)
takeSelectedTabViewItemFromSender: (id)sender;
Availability: OpenStep
Description forthcoming.
Instance Variables for NSTabView Class
@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.
@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.
@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.
@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.
@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.
@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.
@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.
@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.
- Declared in:
- AppKit/NSTabView.h
Availability: OpenStep
Description forthcoming.
Method summary
- (void)
tabView: (
NSTabView*)tabView
didSelectTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (BOOL)
tabView: (
NSTabView*)tabView
shouldSelectTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (void)
tabView: (
NSTabView*)tabView
willSelectTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (void)
tabViewDidChangeNumberOfTabViewItems: (
NSTabView*)TabView;
Availability: OpenStep
Description forthcoming.
Up