2a4870e9ac7cf7f70198e66b3b39cce9ef4e00cd
[ITKit.git] / ITCategory-NSMenu.h
1 /*
2  *      ITKit
3  *  ITCategory-NSMenu.h
4  *    Category which extends NSMenu
5  *
6  *  Original Author : Joseph Spiros <joseph.spiros@ithinksw.com>
7  *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
8  *
9  *  Copyright (c) 2002 - 2004 iThink Software.
10  *  All Rights Reserved
11  *
12  */
13
14
15 #import <Cocoa/Cocoa.h>
16 #import <Carbon/Carbon.h>
17
18 @interface NSMenu (ITCategory)
19
20 - (void)indentItem:(id <NSMenuItem>)item;
21 - (void)indentItemAtIndex:(int)index;
22 - (void)indentItem:(id <NSMenuItem>)item toLevel:(int)indentLevel;
23 - (void)indentItemAtIndex:(int)index toLevel:(int)indentLevel;
24 - (MenuRef)menuRef;
25 - (void)removeAllItems;
26
27 @end