Up
Authors
- Michael Hanni (
mhanni@sprintmail.com
)
-
Date: Generated at 2025-07-12 14:18:56 +0000
The tabular view class
Copyright: (C) 1999,2000 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSTabView.h
Availability: OpenStep
Description forthcoming.
Instance Variables
- (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.
- (NSInteger)
indexOfTabViewItem: (
NSTabViewItem*)tabViewItem;
Availability: OpenStep
Description forthcoming.
- (NSInteger)
indexOfTabViewItemWithIdentifier: (id)identifier;
Availability: OpenStep
Description forthcoming.
- (void)
insertTabViewItem: (
NSTabViewItem*)tabViewItem
atIndex: (NSInteger)index;
Availability: OpenStep
Description forthcoming.
- (NSSize)
minimumSize;
Availability: OpenStep
Description forthcoming.
- (NSInteger)
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: (NSInteger)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: (NSInteger)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;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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 NSView*
_original_nextKeyView;
Availability: OpenStep
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;
Availability: OpenStep
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 NSUInteger
_selected_item;
Availability: OpenStep
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;
Availability: OpenStep
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;
Availability: OpenStep
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: MacOS-X 10.6.0
Description forthcoming.
- (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