Up

NSToolbar class documentation

Authors

Generated by root

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
Standards:

Description forthcoming.


Instance Variables

Method summary

isVisible 

- (BOOL) isVisible;

Description forthcoming.


setDisplayMode: 

- (void) setDisplayMode: (NSToolbarDisplayMode)displayMode;

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


setSizeMode: 

- (void) setSizeMode: (NSToolbarSizeMode)sizeMode;

Description forthcoming.


setVisible: 

- (void) setVisible: (BOOL)shown;

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
Standards:

Description forthcoming.

Method summary

toolbar: itemForItemIdentifier: willBeInsertedIntoToolbar: 

- (NSToolbarItem*) toolbar: (NSToolbar*)toolbar itemForItemIdentifier: (NSString*)itemIdentifier willBeInsertedIntoToolbar: (BOOL)flag;

Description forthcoming.


toolbarAllowedItemIdentifiers: 

- (NSArray*) toolbarAllowedItemIdentifiers: (NSToolbar*)toolbar;

Description forthcoming.


toolbarDefaultItemIdentifiers: 

- (NSArray*) toolbarDefaultItemIdentifiers: (NSToolbar*)toolbar;

Description forthcoming.


toolbarSelectableItemIdentifiers: 

- (NSArray*) toolbarSelectableItemIdentifiers: (NSToolbar*)toolbar;

Description forthcoming.



Up