Adding to OS X Status Tray

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* The Tray.h File */
#import <Cocoa/Cocoa.h>

@interface Tray : NSObject <NSApplicationDelegate> {
    NSWindow *window;
	
	@private
		NSStatusItem *trayItem;
}

@property (assign) IBOutlet NSWindow *window;

@end

/* the goods - Tray.m */

@implementation Tray
@synthesize window;

-(NSMenu *) buildMenu
{
	NSZone *zone = [NSMenu menuZone];
	NSMenu *menu = [[NSMenu allocWithZone:zone] init];
	NSMenuItem *item;
	
	item = [menu addItemWithTitle:@"Testing" action:@selector(testing:) keyEquivalent:@""];
	[item setTarget:self];
	
	item = [menu addItemWithTitle:@"Quit" action:@selector(quitApp:) keyEquivalent:@""];
	[item setTarget:self];
	
	return menu;
	
}

-(void)testing:(id)sender
{
	NSLog(@"Hello World");
}

-(void) quitApp:(id)sender
{
	[NSApp terminate:sender];
}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification 
{
	NSMenu *menu = [self buildMenu];
	trayItem = [[[NSStatusBar systemStatusBar]
					statusItemWithLength:NSSquareStatusItemLength] retain];
	[trayItem setMenu:menu];
	[trayItem setHighlightMode:YES];
	[trayItem setTitle:@"HERE"];
	
	[menu release];
}

@end