Up

NSToolbar class documentation

Authors

Generated by builder

Contents -

  1. Software documentation for the NSToolbar class
  2. Software documentation for the NSObject(NSToolbarDelegate) informal protocol

Software documentation for the NSToolbar class

NSToolbar : GSToolbar

Declared in:
AppKit/NSToolbar.h
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


Instance Variables

Method summary

isVisible 

- (BOOL) isVisible;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


setDisplayMode: 

- (void) setDisplayMode: (NSToolbarDisplayMode)displayMode;
Availability: Not in OpenStep/MacOS-X

Sets the receivers delegate... this is the object which will receive -toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar: -toolbarAllowedItemIdentifiers: and -toolbarDefaultItemIdentifiers: messages.


setSizeMode: 

- (void) setSizeMode: (NSToolbarSizeMode)sizeMode;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


setVisible: 

- (void) setVisible: (BOOL)shown;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.




Instance Variables for NSToolbar Class

_visible

@protected BOOL _visible;

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.


_window

@protected NSWindow* _window;

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(NSToolbarDelegate) informal protocol

NSObject(NSToolbarDelegate)

Declared in:
AppKit/NSToolbar.h
Availability: Not in OpenStep/MacOS-X

Description forthcoming.

Method summary

toolbar: itemForItemIdentifier: willBeInsertedIntoToolbar: 

- (NSToolbarItem*) toolbar: (NSToolbar*)toolbar itemForItemIdentifier: (NSString*)itemIdentifier willBeInsertedIntoToolbar: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


toolbarAllowedItemIdentifiers: 

- (NSArray*) toolbarAllowedItemIdentifiers: (NSToolbar*)toolbar;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


toolbarDefaultItemIdentifiers: 

- (NSArray*) toolbarDefaultItemIdentifiers: (NSToolbar*)toolbar;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.


toolbarSelectableItemIdentifiers: 

- (NSArray*) toolbarSelectableItemIdentifiers: (NSToolbar*)toolbar;
Availability: Not in OpenStep/MacOS-X

Description forthcoming.



Up