]> Dogcows Code - chaz/thecheat/blob - MenuExtras.h
update contact information and project URL
[chaz/thecheat] / MenuExtras.h
1
2 /*
3 * The Cheat - The legendary universal game trainer for Mac OS X.
4 * http://www.brokenzipper.com/trac/wiki/TheCheat
5 *
6 * Copyright (c) 2003-2011, Charles McGarvey et al.
7 *
8 * Distributable under the terms and conditions of the 2-clause BSD
9 * license; see the file COPYING for the legal text of the license.
10 */
11
12 #import <Cocoa/Cocoa.h>
13
14
15 @interface NSMenu ( MenuExtras )
16
17 - (void)removeItemWithTitle:(NSString *)title;
18 - (void)removeAllItemsWithTitle:(NSString *)title;
19 - (void)removeItemWithTag:(int)tag;
20 - (void)removeItemWithRepresentedObject:(id)object;
21
22 - (void)removeAllItems;
23
24 - (void)enableAllItems;
25 - (void)disableAllItems;
26
27 @end
This page took 0.028904 seconds and 4 git commands to generate.