Another cleanup that doesn't seem to actually help
[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 : Matthew Judy <mjudy@ithinksw.com>
8  *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
9  *
10  *  Copyright (c) 2002 - 2003 iThink Software.
11  *  All Rights Reserved
12  *
13  */
14
15
16 #import <Cocoa/Cocoa.h>
17 #import <Carbon/Carbon.h>
18
19 @interface NSMenu (ITCategory)
20
21 - (void)indentItem:(id <NSMenuItem>)item;
22 - (void)indentItemAtIndex:(int)index;
23 - (void)indentItem:(id <NSMenuItem>)item toLevel:(int)indentLevel;
24 - (void)indentItemAtIndex:(int)index toLevel:(int)indentLevel;
25 - (MenuRef)menuRef;
26
27 @end