mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
13 lines
347 B
Objective-C
13 lines
347 B
Objective-C
#import <AppKit/NSToolbar.h>
|
|
|
|
@interface NSToolbar (CHToolbarCustomizableAdditions)
|
|
- (BOOL) alwaysCustomizableByDrag;
|
|
- (void) setAlwaysCustomizableByDrag:(BOOL) flag;
|
|
|
|
- (BOOL) showsContextMenu;
|
|
- (void) setShowsContextMenu:(BOOL) flag;
|
|
|
|
- (unsigned int) indexOfFirstMovableItem;
|
|
- (void) setIndexOfFirstMovableItem:(unsigned int) anIndex;
|
|
@end
|