Adding quick fix get-the-fuck-out-of-the-way positioning
[ITKit.git] / ITCategory-NSMenu.h
1 //
2 //  ITCategory-NSMenu.h
3 //  ITKit
4 //
5 //  Created by Joseph Spiros on Sat Sep 27 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #import <Carbon/Carbon.h>
11
12 @interface NSMenu (ITCategory)
13
14 - (void)indentItem:(NSMenuItem *)item;
15 - (void)indentItemAtIndex:(int)index;
16 - (void)indentItem:(NSMenuItem *)item toLevel:(int)indentLevel;
17 - (void)indentItemAtIndex:(int)index toLevel:(int)indentLevel;
18 - (MenuRef)menuRef;
19
20 @end