Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITCategory-NSMenu.h
1 /*
2  *      ITKit
3  *      ITCategory-NSMenu.h
4  *
5  *      Copyright (c) 2005 iThink Software
6  *
7  */
8
9 #import <Cocoa/Cocoa.h>
10 #import <Carbon/Carbon.h>
11
12 @interface NSMenu (ITKitCategory)
13
14 - (void)indentItem:(id <NSMenuItem>)item;
15 - (void)indentItemAtIndex:(int)index;
16 - (void)indentItem:(id <NSMenuItem>)item toLevel:(int)indentLevel;
17 - (void)indentItemAtIndex:(int)index toLevel:(int)indentLevel;
18 - (MenuRef)menuRef;
19 - (void)removeAllItems;
20
21 @end